From 2808eddca3d39286262baa2848870f2cb3b749e8 Mon Sep 17 00:00:00 2001 From: donywang922 Date: Fri, 24 Nov 2023 10:48:14 -0800 Subject: [PATCH] taxonomy!!!!! --- app/SampleData.json | 2 +- app/components/component.module.css | 37 +- app/components/taxonomy_list.tsx | 49 + app/display/page.jsx | 24 +- app/filtering/Filter.css | 115 +- app/filtering/filter.jsx | 216 +- app/globals.css | 1 - app/taxonomy.ts | 61466 ++++++++++++++++++++++++++ 8 files changed, 61725 insertions(+), 185 deletions(-) create mode 100644 app/components/taxonomy_list.tsx create mode 100644 app/taxonomy.ts diff --git a/app/SampleData.json b/app/SampleData.json index be0aeb5..b937bd0 100644 --- a/app/SampleData.json +++ b/app/SampleData.json @@ -3,7 +3,7 @@ "common_name": "European Silver Fir", "scientific_name": ["Abies alba"], "other_name": ["Common Silver Fir"], - "family": null, + "family": "Asteraceae", "origin": [ "Austria", "Germany", diff --git a/app/components/component.module.css b/app/components/component.module.css index d7848dd..2b11724 100644 --- a/app/components/component.module.css +++ b/app/components/component.module.css @@ -8,16 +8,49 @@ aspect-ratio: 1/1; overflow: hidden; } + .dropdown { margin-bottom: 20px; width: 100%; display: flex; - color:rgb(235, 249, 235) + color: rgb(235, 249, 235) } + .dropdown-item-custom { display: flex; justify-content: left; } + .plantIco img { - margin:0 0.5em; + margin: 0 0.5em; +} + +.atxlst { + font-weight: bold; + color: #5b5b5b; +} + +.atxlst > div > div:nth-last-child(n+2) { + border-left: 3px solid; + border-image: linear-gradient(#fff, #a2a2a2, #fff) 30; +} + +.atxlst .highlight { + font-weight: bolder; + color: #257e19; + position: relative; + display: flex; +} + +.atxlst > div > div:nth-child(n+2) > .highlight:after { + content: "◀"; + position: absolute; + display: block; + color: #a2a2a2; + left: 100%; +} + +.atxlst .rank { + color: #444444; + text-align: center; } \ No newline at end of file diff --git a/app/components/taxonomy_list.tsx b/app/components/taxonomy_list.tsx new file mode 100644 index 0000000..d304527 --- /dev/null +++ b/app/components/taxonomy_list.tsx @@ -0,0 +1,49 @@ +import styles from "./component.module.css" +import React from "react"; +import {taxonomy} from "@/app/taxonomy"; + +export default function Taxonomy_list(ctx: { + family: string, +}) { + let bread: string[] = [] + let lst: React.JSX.Element[][] = [] + let tax = taxonomy[ctx.family]; + let n: string = ctx.family + let r = tax["r"] + bread.push(n) + while (true) { + let nn = tax["p"]; + tax = taxonomy[nn]; + if (tax == null) break; + let b = tax["c"] + let tmp: React.JSX.Element[] = [] + tmp.push(
+ {r} +
) + for (let t of b) { + tmp.push(
+ {t} +
) + } + n = nn + r = tax["r"] + lst.push(tmp) + if (r != "CLADE") + bread.push(n) + + } + lst.push([
{n}
]) + bread.reverse() + return
+ +
+ {lst.map((t, i) =>
{t.map((item) => item)}
)} +
+
+} \ No newline at end of file diff --git a/app/display/page.jsx b/app/display/page.jsx index d9110a4..d028592 100644 --- a/app/display/page.jsx +++ b/app/display/page.jsx @@ -1,30 +1,12 @@ 'use client'; -import React, {useEffect, useState} from 'react' - +import React from 'react' +import Taxonomy_list from "../components/taxonomy_list"; function Display() { - const [prevSearchQuery, setPrevSearchQuery] = useState(""); - - useEffect(() => { - const searchQuery = localStorage.getItem('lastSearchQuery'); - - if (searchQuery !== null) { - console.log('Your search: ', searchQuery); - setPrevSearchQuery(searchQuery); - - localStorage.removeItem('lastSearchQuery'); - } - else { - console.log("no data"); - } - }, []) - - return ( - prevSearchQuery &&
your search is: {prevSearchQuery}
- ) + return } export default Display; \ No newline at end of file diff --git a/app/filtering/Filter.css b/app/filtering/Filter.css index fcc69b2..04fedee 100644 --- a/app/filtering/Filter.css +++ b/app/filtering/Filter.css @@ -1,12 +1,10 @@ -.main-filter{ +.main-filter { display: flex; flex-direction: column; align-items: center; - flex-grow: 1; + flex-grow: 1; max-height: 100vh; - overflow-y: auto; background-color: white; - padding: 50px 200px; } .filterPart { @@ -16,19 +14,19 @@ justify-content: right; /* width: 185em; */ padding: 0px 20px; - + } /* these are the filter categories ex. names,size,edible, etc */ #full-width { background-color: rgb(235, 249, 235); - color:black; + color: black; flex: 1; font-size: 25px; text-align: left; - border:none; - padding:0; - + border: none; + padding: 0; + } /* .filterFullArea { @@ -53,6 +51,7 @@ justify-content: center; font-size: 25px; } + .filterBlock { height: 400px; width: 1000px; @@ -63,13 +62,13 @@ padding-top: 20px; border: 2px solid black; border-radius: 20px 0px 0px 20px; - margin: right; + margin: right; padding: 50px; text-align: center; overflow: hidden; overflow-y: scroll; font-size: 25px; - + } /* name of filter */ @@ -78,29 +77,34 @@ font-size: 25px; } - + /* information inside of bottom scroll bar */ .information { color: black; - font-size: 25px; padding: 20px; text-align: left; + width: 100%; } -/* size of the scroll bar */ -.scroll-object1{ - height: 300px; - background-color: rgb(235, 249, 235); - width: 1415px; - margin-top: 50px; - margin-bottom: 50px; +.information > div { + background-color: rgb(235, 249, 235); border: 2px solid black; - border-radius: 20px 0px 0px 20px; - margin: auto; padding: 20px; + width: 100%; + border-radius: 20px; + margin-top: 20px; +} + + +/* size of the scroll bar */ +.scroll-object1 { + font-size: 25px; + height: 300px; + margin: auto; text-align: left; overflow: hidden; overflow-y: scroll; + border-radius: 20px 0 0 20px!important; } /* adjusts page width */ @@ -111,18 +115,19 @@ html, body { font-family: Arial, Helvetica, sans-serif; } -.multi-level, item ul, .nav{ + +.multi-level, item ul, .nav { display: none; } -#menu:checked ~ .multi-level, .item input:checked ~ ul{ +#menu:checked ~ .multi-level, .item input:checked ~ ul { display: block; } /* Arrow */ -.arrow{ +.arrow { width: 12px; height: 12px; vertical-align: middle; @@ -130,7 +135,8 @@ html, body { z-index: 0; margin: 17px 1em 0 2em; } -.item input + .arrow{ + +.item input + .arrow { transform: rotate(-90deg); transition: 0.1s; @@ -139,37 +145,37 @@ html, body { .item input:checked + .arrow { transform: rotate(0deg); transition: 0.1s; -} +} /* using new code for filters */ details { user-select: none; - } - - details>summary span.icon { +} + +details > summary span.icon { width: 24px; height: 24px; transition: all 0.3s; - margin-left:0%; - } - - details[open] summary span.icon { + margin-left: 0%; +} + +details[open] summary span.icon { transform: rotate(90deg); - color:green; - } - - summary { + color: green; +} + +summary { display: flex; justify-content: flex-start; cursor: pointer; - } - - summary::-webkit-details-marker { +} + +summary::-webkit-details-marker { display: none; - } +} - .focus-capturer:focus-within .collapsible-content { +.focus-capturer:focus-within .collapsible-content { display: block; } @@ -192,17 +198,16 @@ details { margin-bottom: 20px; } -.container{ +.container { display: flex; justify-content: space-evenly; - -} +} @media (max-width: 850px) { .main-filter { - padding: 20px; + padding: 20px; margin: 0; display: flex; flex-direction: column; @@ -213,23 +218,23 @@ details { } #full-width { - font-size: 20px; + font-size: 20px; } .filterBlock { - width: 100%; - border-radius: 0; - padding: 20px; - margin: 0; + width: 100%; + border-radius: 0; + padding: 20px; + margin: 0; } .scroll-object1 { - width: 100%; - border-radius: 0; + width: 100%; + border-radius: 0; + font-size: 20px; /* Adjust font size for smaller screens */ } .information { - font-size: 20px; /* Adjust font size for smaller screens */ padding: 10px; /* Adjust padding for smaller screens */ margin: 0; width: 95vw; diff --git a/app/filtering/filter.jsx b/app/filtering/filter.jsx index 2567bff..fd3c4ce 100644 --- a/app/filtering/filter.jsx +++ b/app/filtering/filter.jsx @@ -4,11 +4,13 @@ import "./Filter.css"; import Dropdown from '../components/dropdown'; import Image from 'next/image'; +import Taxonomy_list from "@/app/components/taxonomy_list"; export default function Filter(props) { //console.log(props.speciesList); const [selectedOptionNames, setSelectedOptionNames] = useState({}); + console.log(props) if (!props.speciesList) { return ( @@ -83,19 +85,19 @@ export default function Filter(props) { 'thorny', 'pest_susceptibility' ] - - + + const handleOptionChange = (id, option, isChecked) => { setSelectedOptionNames(prevOptionNames => { if (isChecked) { return { - ...prevOptionNames, + ...prevOptionNames, [id]: option, }; } else { - const updatedOptions = { ...prevOptionNames }; + const updatedOptions = {...prevOptionNames}; delete updatedOptions[id]; return updatedOptions; } @@ -118,136 +120,140 @@ export default function Filter(props) { */ - // for (value in values) { // if (key === selectedOptionNames[id]) { // // then map the key to the value? // } // } - - - + return (

{props.speciesList.common_name || "No name yet"}

- -
- - backup - - -
+ +
+ + backup + + +

Filters:

-
+
-
- - - -
-
- {optionValues.length > 0 ? ( + + +
+
+ {optionValues.length > 0 ? ( <> {optionValues.includes("Care Guide") && ( -
- Care Guides - - {props.speciesList["common_name"] && ( - The {props.speciesList["common_name"]} requires - )} - - - {props.speciesList["watering"] && ( - {props.speciesList["watering"].charAt(0).toLowerCase() + props.speciesList["watering"].slice(1)} watering. - )} - - - {props.speciesList["sunlight"] && ( - The amount of sun the plant needs is {props.speciesList["sunlight"]}. - )} - - - {props.speciesList["pruning_month"] && ( - The best month to prune the plant is{" "} {props.speciesList["pruning_month"].join(", ")} and{" "} - )} - - - {props.speciesList["maintenance"] && ( - the overall maintenance to care for this plant is {props.speciesList["maintenance"]}. - )} - - - {props.speciesList["drought_tolerant"] !== null && ( - the plant {props.speciesList["drought_tolerant"] ? "is drought tolerant" : "is not drought tolerant"}. - )} - - - {props.speciesList["salt_tolerant"] !== null && ( - Additionally, the plant {props.speciesList["salt_tolerant"] ? "is salt tolerant" : "is not salt tolerant"}. - )} - - - {props.speciesList["fruits"] !== null && ( - Furthermore, the plant {props.speciesList["fruits"] ? "grows fruits" : "does not grow fruits"}. - )} - - - {props.speciesList["indoor"] !== null && ( - The plant {props.speciesList["indoor"] ? "is an indoor plant" : "is not an indoor plant"}. - )} - - - {props.speciesList["care_level"] !== null && ( - The overall care level of the plant is said to be {props.speciesList["care_level"].charAt(0).toLowerCase() + props.speciesList["care_level"].slice(1)}. - )} -
+
+ Care Guides + + {props.speciesList["common_name"] && ( + The {props.speciesList["common_name"]} requires + )} + + + {props.speciesList["watering"] && ( + {props.speciesList["watering"].charAt(0).toLowerCase() + props.speciesList["watering"].slice(1)} watering. + )} + + + {props.speciesList["sunlight"] && ( + The amount of sun the plant needs is {props.speciesList["sunlight"]}. + )} + + + {props.speciesList["pruning_month"] && ( + The best month to prune the plant is{" "} {props.speciesList["pruning_month"].join(", ")} and{" "} + )} + + + {props.speciesList["maintenance"] && ( + the overall maintenance to care for this plant is {props.speciesList["maintenance"]}. + )} + + + {props.speciesList["drought_tolerant"] !== null && ( + the plant {props.speciesList["drought_tolerant"] ? "is drought tolerant" : "is not drought tolerant"}. + )} + + + {props.speciesList["salt_tolerant"] !== null && ( + Additionally, the plant {props.speciesList["salt_tolerant"] ? "is salt tolerant" : "is not salt tolerant"}. + )} + + + {props.speciesList["fruits"] !== null && ( + Furthermore, the plant {props.speciesList["fruits"] ? "grows fruits" : "does not grow fruits"}. + )} + + + {props.speciesList["indoor"] !== null && ( + The plant {props.speciesList["indoor"] ? "is an indoor plant" : "is not an indoor plant"}. + )} + + + {props.speciesList["care_level"] !== null && ( + The overall care level of the plant is said to be {props.speciesList["care_level"].charAt(0).toLowerCase() + props.speciesList["care_level"].slice(1)}. + )} +
)} {optionValues.map((valueOption, index) => ( -
- {valueOption !== "Care Guide" && ( - props.speciesList[valueOption] !== undefined && props.speciesList[valueOption] !== null ? ( - typeof props.speciesList[valueOption] === "object" - ? `${valueOption}: ${Object.values(props.speciesList[valueOption]).join(", ")}` - : `${valueOption}: ${props.speciesList[valueOption]}` - ) : ( - "No data yet" - ) - )} -
+
+ {valueOption !== "Care Guide" && ( + props.speciesList[valueOption] !== undefined && props.speciesList[valueOption] !== null ? ( + typeof props.speciesList[valueOption] === "object" + ? `${valueOption}: ${Object.values(props.speciesList[valueOption]).join(", ")}` + : `${valueOption}: ${props.speciesList[valueOption]}` + ) : ( + "No data yet" + ) + )} +
))} - ) : ( + ) : ( Please use the filters to select the data you want. - )} -
-
- + )} +
+ {props.speciesList["family"] && } +
- + ); - + } - /*< - - - - - // */ +/*< + + + + +// */ diff --git a/app/globals.css b/app/globals.css index 89e63bf..6755762 100644 --- a/app/globals.css +++ b/app/globals.css @@ -92,7 +92,6 @@ body > .navbar { /* Styles for the navbar links */ /* For example: */ color:black; /* Change the color of the links */ - align-items: space-between; /* Other styles like font-size, margin, etc. */ background-color: rgb(235, 249, 235); border: black; diff --git a/app/taxonomy.ts b/app/taxonomy.ts new file mode 100644 index 0000000..c5432a7 --- /dev/null +++ b/app/taxonomy.ts @@ -0,0 +1,61466 @@ +export const taxonomy: any = { + "Viridiplantae": { + "p": "", + "c": [ + "Chlorophyta", + "Prasinodermophyta", + "Streptophyta" + ], + "n": "green plants", + "r": "KINGDOM" + }, + "Chlorophyta": { + "p": "Viridiplantae", + "c": [ + "Chloropicophyceae", + "core chlorophytes", + "Mamiellophyceae", + "Nephroselmidophyceae", + "Palmophyllophyceae", + "Pedinophyceae", + "Picocystophyceae", + "Pyramimonadophyceae", + "Ulvophyceae" + ], + "n": "green algae", + "r": "PHYLUM" + }, + "Prasinodermophyta": { + "p": "Viridiplantae", + "c": [ + "Prasinodermophyceae" + ], + "n": "", + "r": "PHYLUM" + }, + "Streptophyta": { + "p": "Viridiplantae", + "c": [ + "Chlorokybophyceae", + "Klebsormidiophyceae", + "Mesostigmatophyceae", + "Streptophytina" + ], + "n": "", + "r": "PHYLUM" + }, + "Klebsormidiophyceae": { + "p": "Streptophyta", + "c": [ + "Klebsormidiales" + ], + "n": "", + "r": "CLASS" + }, + "Streptophytina": { + "p": "Streptophyta", + "c": [ + "Charophyceae", + "Coleochaetophyceae", + "Zygnemophyceae", + "Embryophyta" + ], + "n": "", + "r": "SUBPHYLUM" + }, + "Mamiellophyceae": { + "p": "Chlorophyta", + "c": [ + "Dolichomastigales", + "Mamiellales", + "Monomastigales" + ], + "n": "", + "r": "CLASS" + }, + "Chloropicophyceae": { + "p": "Chlorophyta", + "c": [ + "Chloropicales" + ], + "n": "", + "r": "CLASS" + }, + "Pyramimonadophyceae": { + "p": "Chlorophyta", + "c": [ + "Pyramimonadales" + ], + "n": "", + "r": "CLASS" + }, + "Prasinodermophyceae": { + "p": "Prasinodermophyta", + "c": [ + "Prasinodermales" + ], + "n": "", + "r": "CLASS" + }, + "Ulvophyceae": { + "p": "Chlorophyta", + "c": [ + "Chlorocystidales", + "Ignatiales", + "Oltmannsiellopsidales", + "OUU clade", + "Scotinosphaerales", + "TCBD clade" + ], + "n": "", + "r": "CLASS" + }, + "Chlorokybophyceae": { + "p": "Streptophyta", + "c": [ + "Chlorokybales" + ], + "n": "", + "r": "CLASS" + }, + "Nephroselmidophyceae": { + "p": "Chlorophyta", + "c": [ + "Nephroselmidales" + ], + "n": "", + "r": "CLASS" + }, + "core chlorophytes": { + "p": "Chlorophyta", + "c": [ + "Chlorodendrophyceae", + "Chlorophyceae", + "Trebouxiophyceae" + ], + "n": "", + "r": "CLADE" + }, + "Pedinophyceae": { + "p": "Chlorophyta", + "c": [ + "Marsupiomonadales", + "Pedinomonadales", + "Scourfieldiales" + ], + "n": "", + "r": "CLASS" + }, + "Palmophyllophyceae": { + "p": "Chlorophyta", + "c": [ + "Palmophyllales", + "Prasinococcales" + ], + "n": "", + "r": "CLASS" + }, + "Picocystophyceae": { + "p": "Chlorophyta", + "c": [ + "Picocystales" + ], + "n": "", + "r": "CLASS" + }, + "Mesostigmatophyceae": { + "p": "Streptophyta", + "c": [ + "Mesostigmatales", + "Spirotaenia" + ], + "n": "", + "r": "CLASS" + }, + "Prasinococcales": { + "p": "Palmophyllophyceae", + "c": [ + "Prasinococcaceae" + ], + "n": "", + "r": "ORDER" + }, + "Nephroselmidales": { + "p": "Nephroselmidophyceae", + "c": [ + "Nephroselmidaceae" + ], + "n": "", + "r": "ORDER" + }, + "Monomastigales": { + "p": "Mamiellophyceae", + "c": [ + "Monomastigaceae" + ], + "n": "", + "r": "ORDER" + }, + "Palmophyllales": { + "p": "Palmophyllophyceae", + "c": [ + "Palmophyllaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chloropicales": { + "p": "Chloropicophyceae", + "c": [ + "Chloropicaceae" + ], + "n": "", + "r": "ORDER" + }, + "Marsupiomonadales": { + "p": "Pedinophyceae", + "c": [ + "Marsupiomonadaceae", + "Resultomonadaceae" + ], + "n": "", + "r": "ORDER" + }, + "Dolichomastigales": { + "p": "Mamiellophyceae", + "c": [ + "Crustomastigaceae", + "Dolichomastigaceae" + ], + "n": "", + "r": "ORDER" + }, + "Picocystales": { + "p": "Picocystophyceae", + "c": [ + "Picocystaceae" + ], + "n": "", + "r": "ORDER" + }, + "Mesostigmatales": { + "p": "Mesostigmatophyceae", + "c": [ + "Mesostigmataceae" + ], + "n": "", + "r": "ORDER" + }, + "Prasinodermales": { + "p": "Prasinodermophyceae", + "c": [ + "Prasinodermaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chlorophyceae": { + "p": "core chlorophytes", + "c": [ + "Chlorosarcinales", + "CS clade", + "OCC clade", + "Phaeophilales", + "Protosiphonales", + "Tetrasporales" + ], + "n": "", + "r": "CLASS" + }, + "Zygnemophyceae": { + "p": "Streptophytina", + "c": [ + "Spirogloeophycidae", + "Zygnematophycidae" + ], + "n": "gamophytes", + "r": "CLASS" + }, + "TCBD clade": { + "p": "Ulvophyceae", + "c": [ + "Bryopsidales", + "Cladophorales", + "Dasycladales", + "Trentepohliales" + ], + "n": "", + "r": "CLADE" + }, + "Chlorocystidales": { + "p": "Ulvophyceae", + "c": [ + "Chlorocystidaceae" + ], + "n": "", + "r": "ORDER" + }, + "Spirotaenia": { + "p": "Mesostigmatophyceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mamiellales": { + "p": "Mamiellophyceae", + "c": [ + "Bathycoccaceae", + "Mamiellaceae" + ], + "n": "", + "r": "ORDER" + }, + "OUU clade": { + "p": "Ulvophyceae", + "c": [ + "Oltmansiellopsidales", + "Ulotrichales", + "Ulvales" + ], + "n": "", + "r": "CLADE" + }, + "Pedinomonadales": { + "p": "Pedinophyceae", + "c": [ + "Pedinomonadaceae" + ], + "n": "", + "r": "ORDER" + }, + "Klebsormidiales": { + "p": "Klebsormidiophyceae", + "c": [ + "Elakatotrichaceae", + "Klebsormidiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Trebouxiophyceae": { + "p": "core chlorophytes", + "c": [ + "Chlorellales", + "Ctenocladales", + "Microthamniales", + "Prasiolales", + "Trebouxiales", + "Watanabeales" + ], + "n": "", + "r": "CLASS" + }, + "Chlorokybales": { + "p": "Chlorokybophyceae", + "c": [ + "Chlorokybaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chlorodendrophyceae": { + "p": "core chlorophytes", + "c": [ + "Chlorodendrales" + ], + "n": "", + "r": "CLASS" + }, + "Ignatiales": { + "p": "Ulvophyceae", + "c": [ + "Ignatiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Scotinosphaerales": { + "p": "Ulvophyceae", + "c": [ + "Scotinosphaeraceae" + ], + "n": "", + "r": "ORDER" + }, + "Embryophyta": { + "p": "Streptophytina", + "c": [ + "Anthocerotophyta", + "Marchantiophyta", + "Bryophyta", + "Tracheophyta" + ], + "n": "land plants", + "r": "CLADE" + }, + "Pyramimonadales": { + "p": "Pyramimonadophyceae", + "c": [ + "Halosphaeraceae", + "Polyblepharidaceae", + "Pterospermataceae", + "Pyramimonadaceae" + ], + "n": "", + "r": "ORDER" + }, + "Charophyceae": { + "p": "Streptophytina", + "c": [ + "Charales" + ], + "n": "", + "r": "CLASS" + }, + "Coleochaetophyceae": { + "p": "Streptophytina", + "c": [ + "Coleochaetales" + ], + "n": "", + "r": "CLASS" + }, + "Scourfieldiales": { + "p": "Pedinophyceae", + "c": [ + "Scourfieldiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Oltmannsiellopsidales": { + "p": "Ulvophyceae", + "c": [ + "Oltmannsiellopsidaceae" + ], + "n": "", + "r": "ORDER" + }, + "Watanabeales": { + "p": "Trebouxiophyceae", + "c": [ + "Calidiella", + "Chloroidium", + "Jaagichlorella", + "Kalinella", + "Massjukichlorella", + "Mysteriochloris", + "Phyllosiphon", + "Polulichloris", + "Viridiella", + "Watanabea", + "Watanabea clade" + ], + "n": "", + "r": "ORDER" + }, + "Dolichomastigaceae": { + "p": "Dolichomastigales", + "c": [ + "Dolichomastix" + ], + "n": "", + "r": "FAMILY" + }, + "Protosiphonales": { + "p": "Chlorophyceae", + "c": [ + "Protosiphonaceae" + ], + "n": "", + "r": "ORDER" + }, + "Tetrasporales": { + "p": "Chlorophyceae", + "c": [ + "Palmellaceae", + "Tetrasporaceae" + ], + "n": "", + "r": "ORDER" + }, + "Spirogloeophycidae": { + "p": "Zygnemophyceae", + "c": [ + "Spirogloeales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Zygnematophycidae": { + "p": "Zygnemophyceae", + "c": [ + "Desmidiales", + "Zygnematales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Bathycoccaceae": { + "p": "Mamiellales", + "c": [ + "Bathycoccus", + "Ostreococcus" + ], + "n": "", + "r": "FAMILY" + }, + "Chlorosarcinales": { + "p": "Chlorophyceae", + "c": [ + "Chlorosarcinaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pterospermataceae": { + "p": "Pyramimonadales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Mamiellaceae": { + "p": "Mamiellales", + "c": [ + "Mamiella", + "Mantoniella", + "Micromonas" + ], + "n": "", + "r": "FAMILY" + }, + "Scotinosphaeraceae": { + "p": "Scotinosphaerales", + "c": [ + "Scotinosphaera" + ], + "n": "", + "r": "FAMILY" + }, + "Elakatotrichaceae": { + "p": "Klebsormidiales", + "c": [ + "Elakatothrix", + "Raphidonemopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Mesostigmataceae": { + "p": "Mesostigmatales", + "c": [ + "Mesostigma" + ], + "n": "", + "r": "FAMILY" + }, + "Anthocerotophyta": { + "p": "Embryophyta", + "c": [ + "Anthocerotopsida", + "Leiosporocerotopsida" + ], + "n": "hornworts", + "r": "CLADE" + }, + "Chlorodendrales": { + "p": "Chlorodendrophyceae", + "c": [ + "Chlorodendraceae" + ], + "n": "", + "r": "ORDER" + }, + "Trentepohliales": { + "p": "TCBD clade", + "c": [ + "Trentepohliaceae" + ], + "n": "", + "r": "ORDER" + }, + "Picocystaceae": { + "p": "Picocystales", + "c": [ + "Picocystis" + ], + "n": "", + "r": "FAMILY" + }, + "Cladophorales": { + "p": "TCBD clade", + "c": [ + "Anadyomenaceae", + "Boodleaceae", + "Cladophoraceae", + "Okellyaceae", + "Pithophoraceae", + "Pseudocladophoraceae", + "Siphonocladaceae", + "Valoniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Phaeophilales": { + "p": "Chlorophyceae", + "c": [ + "Phaeophilaceae" + ], + "n": "", + "r": "ORDER" + }, + "CS clade": { + "p": "Chlorophyceae", + "c": [ + "Chlamydomonadales", + "Sphaeropleales" + ], + "n": "", + "r": "CLADE" + }, + "Ignatiaceae": { + "p": "Ignatiales", + "c": [ + "Ignatius", + "Pseudocharacium", + "Symbiochlorum" + ], + "n": "", + "r": "FAMILY" + }, + "Crustomastigaceae": { + "p": "Dolichomastigales", + "c": [ + "Crustomastix" + ], + "n": "", + "r": "FAMILY" + }, + "Bryophyta": { + "p": "Embryophyta", + "c": [ + "Andreaeobryophytina", + "Andreaeophytina", + "Bryophytina", + "Sphagnophytina", + "Takakiophytina" + ], + "n": "mosses", + "r": "CLADE" + }, + "Chlorellales": { + "p": "Trebouxiophyceae", + "c": [ + "Chlorellaceae", + "Leptosiraceae", + "Oocystaceae", + "Phyllosiphonaceae", + "Rhopalosolenaceae" + ], + "n": "", + "r": "ORDER" + }, + "OCC clade": { + "p": "Chlorophyceae", + "c": [ + "Chaetopeltidales", + "Chaetophorales", + "Oedogoniales" + ], + "n": "", + "r": "CLADE" + }, + "Prasiolales": { + "p": "Trebouxiophyceae", + "c": [ + "Koliellaceae", + "Prasiolaceae", + "Stichococcaceae" + ], + "n": "", + "r": "ORDER" + }, + "Oltmansiellopsidales": { + "p": "OUU clade", + "c": [ + "Neodangemannia" + ], + "n": "", + "r": "ORDER" + }, + "Nephroselmidaceae": { + "p": "Nephroselmidales", + "c": [ + "Nephroselmis" + ], + "n": "", + "r": "FAMILY" + }, + "Coleochaetales": { + "p": "Coleochaetophyceae", + "c": [ + "Chaetosphaeridiaceae", + "Coleochaetaceae" + ], + "n": "", + "r": "ORDER" + }, + "Prasinodermaceae": { + "p": "Prasinodermales", + "c": [ + "Prasinoderma" + ], + "n": "", + "r": "FAMILY" + }, + "Oltmannsiellopsidaceae": { + "p": "Oltmannsiellopsidales", + "c": [ + "Oltmannsiellopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Trebouxiales": { + "p": "Trebouxiophyceae", + "c": [ + "Trebouxiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Marchantiophyta": { + "p": "Embryophyta", + "c": [ + "Haplomitriopsida", + "Jungermanniopsida", + "Marchantiopsida" + ], + "n": "liverworts", + "r": "CLADE" + }, + "Chloropicaceae": { + "p": "Chloropicales", + "c": [ + "Chloroparvula", + "Chloropicon" + ], + "n": "", + "r": "FAMILY" + }, + "Chlorokybaceae": { + "p": "Chlorokybales", + "c": [ + "Chlorokybus" + ], + "n": "", + "r": "FAMILY" + }, + "Bryopsidales": { + "p": "TCBD clade", + "c": [ + "Bryopsidineae", + "Halimedineae", + "Ostreobineae" + ], + "n": "", + "r": "ORDER" + }, + "Resultomonadaceae": { + "p": "Marsupiomonadales", + "c": [ + "Resultomonas" + ], + "n": "", + "r": "FAMILY" + }, + "Microthamniales": { + "p": "Trebouxiophyceae", + "c": [ + "Friedmannia", + "Microthamniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pedinomonadaceae": { + "p": "Pedinomonadales", + "c": [ + "Pedinomonas" + ], + "n": "", + "r": "FAMILY" + }, + "Klebsormidiaceae": { + "p": "Klebsormidiales", + "c": [ + "Interfilum", + "Klebsormidium" + ], + "n": "", + "r": "FAMILY" + }, + "Palmophyllaceae": { + "p": "Palmophyllales", + "c": [ + "Palmoclathrus", + "Palmophyllum", + "Verdigellas" + ], + "n": "", + "r": "FAMILY" + }, + "Ulvales": { + "p": "OUU clade", + "c": [ + "Bolbocoleonaceae", + "Cloniophoraceae", + "Ctenocladaceae", + "Jaoaceae", + "Kornmanniaceae", + "Monostromataceae", + "Ulvaceae", + "Ulvellaceae" + ], + "n": "", + "r": "ORDER" + }, + "Dasycladales": { + "p": "TCBD clade", + "c": [ + "Dasycladaceae", + "Polyphysaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ctenocladales": { + "p": "Trebouxiophyceae", + "c": [], + "n": "", + "r": "ORDER" + }, + "Ulotrichales": { + "p": "OUU clade", + "c": [ + "Fernandinella", + "Gomontiaceae", + "Hazeniaceae", + "Helicodictyaceae", + "Kraftionemaceae", + "Planophilaceae", + "Sarcinofilaceae", + "Tupiellaceae", + "Ulotrichaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chlorocystidaceae": { + "p": "Chlorocystidales", + "c": [ + "Chlorocystis", + "Desmochloris", + "Halochlorococcum" + ], + "n": "", + "r": "FAMILY" + }, + "Charales": { + "p": "Charophyceae", + "c": [ + "Characeae" + ], + "n": "", + "r": "ORDER" + }, + "Marsupiomonadaceae": { + "p": "Marsupiomonadales", + "c": [ + "Marsupiomonas", + "Protoeuglena" + ], + "n": "", + "r": "FAMILY" + }, + "Tracheophyta": { + "p": "Embryophyta", + "c": [ + "Lycopodiopsida", + "Euphyllophyta" + ], + "n": "vascular plants", + "r": "CLADE" + }, + "Prasinococcaceae": { + "p": "Prasinococcales", + "c": [ + "Prasinococcus" + ], + "n": "", + "r": "FAMILY" + }, + "Scourfieldiaceae": { + "p": "Scourfieldiales", + "c": [ + "Scourfieldia" + ], + "n": "", + "r": "FAMILY" + }, + "Halosphaeraceae": { + "p": "Pyramimonadales", + "c": [ + "Halosphaera" + ], + "n": "", + "r": "FAMILY" + }, + "Polyblepharidaceae": { + "p": "Pyramimonadales", + "c": [ + "Polyblepharides" + ], + "n": "", + "r": "FAMILY" + }, + "Pyramimonadaceae": { + "p": "Pyramimonadales", + "c": [ + "Cymbomonas", + "Prasinopapilla (nom. inval.)", + "Pterosperma", + "Pyramimonas" + ], + "n": "", + "r": "FAMILY" + }, + "Monomastigaceae": { + "p": "Monomastigales", + "c": [ + "Monomastix" + ], + "n": "", + "r": "FAMILY" + }, + "Jaagichlorella": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Watanabea clade": { + "p": "Watanabeales", + "c": [ + "Heterochlorella", + "Heveochlorella", + "Parachloroidium" + ], + "n": "", + "r": "CLADE" + }, + "Pterosperma": { + "p": "Pyramimonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polulichloris": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hazeniaceae": { + "p": "Ulotrichales", + "c": [ + "Hazenia" + ], + "n": "", + "r": "FAMILY" + }, + "Prasinoderma": { + "p": "Prasinodermaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euphyllophyta": { + "p": "Tracheophyta", + "c": [ + "Polypodiopsida", + "Spermatophyta" + ], + "n": "", + "r": "CLADE" + }, + "Jungermanniopsida": { + "p": "Marchantiophyta", + "c": [ + "Jungermanniidae", + "Metzgeriidae", + "Pelliidae" + ], + "n": "", + "r": "CLASS" + }, + "Jaoaceae": { + "p": "Ulvales", + "c": [ + "Jaoa" + ], + "n": "", + "r": "FAMILY" + }, + "Coleochaetaceae": { + "p": "Coleochaetales", + "c": [ + "Coleochaete" + ], + "n": "", + "r": "FAMILY" + }, + "Chloropicon": { + "p": "Chloropicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fernandinella": { + "p": "Ulotrichales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planophilaceae": { + "p": "Ulotrichales", + "c": [ + "Planophila" + ], + "n": "", + "r": "FAMILY" + }, + "Marchantiopsida": { + "p": "Marchantiophyta", + "c": [ + "Blasiidae", + "Marchantiidae" + ], + "n": "", + "r": "CLASS" + }, + "Bryopsidineae": { + "p": "Bryopsidales", + "c": [ + "Bryopsidaceae", + "Codiaceae", + "Derbesiaceae", + "Pseudobryopsidaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Bathycoccus": { + "p": "Bathycoccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthocerotopsida": { + "p": "Anthocerotophyta", + "c": [ + "Anthocerotidae", + "Dendrocerotidae", + "Notothylidae" + ], + "n": "", + "r": "CLASS" + }, + "Andreaeobryophytina": { + "p": "Bryophyta", + "c": [ + "Andreaeobryopsida" + ], + "n": "", + "r": "CLADE" + }, + "Ostreococcus": { + "p": "Bathycoccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorokybus": { + "p": "Chlorokybaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorodendraceae": { + "p": "Chlorodendrales", + "c": [ + "Prasinocladus", + "Scherffelia", + "Tetraselmis" + ], + "n": "", + "r": "FAMILY" + }, + "Ulvellaceae": { + "p": "Ulvales", + "c": [ + "Acrochaete", + "Ochlochaete", + "Ulvella" + ], + "n": "", + "r": "FAMILY" + }, + "Mysteriochloris": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorellaceae": { + "p": "Chlorellales", + "c": [ + "Apatococcus", + "Auxenochlorella", + "Carolibrandtia", + "Catena", + "Chlorella clade", + "Chloroparva", + "Closteriopsis", + "Compactochlorella", + "Coronacoccus", + "Diacanthos", + "Dicloster", + "Edaphochloris", + "Endolithella", + "Geminella", + "Gloeotila", + "Graesiella", + "Helicosporidium", + "Heynigia", + "Hindakia", + "Kalenjinia", + "Keratococcus", + "Kermatia", + "Leptochlorella", + "Lobosphaeropsis", + "Marasphaerium", + "Marvania", + "Masaia", + "Mucidosphaerium", + "Muriella", + "Nannochloris", + "Parachlorella", + "Planktochlorella", + "Prototheca", + "Pseudochlorella", + "Pseudochloris", + "Pumiliosphaera" + ], + "n": "", + "r": "FAMILY" + }, + "Prasinopapilla (nom. inval.)": { + "p": "Pyramimonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prasinococcus": { + "p": "Prasinococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raphidonemopsis": { + "p": "Elakatotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pithophoraceae": { + "p": "Cladophorales", + "c": [ + "Aegagropila", + "Aegagropilopsis", + "Arnoldiella", + "Chlorocladiella", + "Cladogonium", + "Cladophorella", + "Pithophora", + "Wittrockiella" + ], + "n": "", + "r": "FAMILY" + }, + "Resultomonas": { + "p": "Resultomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lycopodiopsida": { + "p": "Tracheophyta", + "c": [ + "Lycopodiales", + "Isoetales", + "Selaginellales" + ], + "n": "club-mosses", + "r": "CLASS" + }, + "Mamiella": { + "p": "Mamiellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhopalosolenaceae": { + "p": "Chlorellales", + "c": [ + "Rhopalosolen" + ], + "n": "", + "r": "FAMILY" + }, + "Mantoniella": { + "p": "Mamiellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kornmanniaceae": { + "p": "Ulvales", + "c": [ + "Annulotesta", + "Kornmannia", + "Lithotrichon", + "Percursaria", + "Pseudendoclonium", + "Tellamia", + "Undulifilum" + ], + "n": "", + "r": "FAMILY" + }, + "Trentepohliaceae": { + "p": "Trentepohliales", + "c": [ + "Cephaleuros", + "Phycopeltis", + "Physolinum", + "Printzina", + "Stomatochroon", + "Trentepohlia" + ], + "n": "", + "r": "FAMILY" + }, + "Phyllosiphonaceae": { + "p": "Chlorellales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Chloroidium": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palmellaceae": { + "p": "Tetrasporales", + "c": [ + "Oncosaccus", + "Palmellopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Takakiophytina": { + "p": "Bryophyta", + "c": [ + "Takakiopsida" + ], + "n": "", + "r": "CLADE" + }, + "Andreaeophytina": { + "p": "Bryophyta", + "c": [ + "Andreaeopsida" + ], + "n": "", + "r": "CLADE" + }, + "Sphagnophytina": { + "p": "Bryophyta", + "c": [ + "Sphagnopsida" + ], + "n": "", + "r": "CLADE" + }, + "Monostromataceae": { + "p": "Ulvales", + "c": [ + "Gayralia", + "Monostroma", + "Protomonostroma", + "Ulvaria" + ], + "n": "", + "r": "FAMILY" + }, + "Phaeophilaceae": { + "p": "Phaeophilales", + "c": [ + "Phaeophila" + ], + "n": "", + "r": "FAMILY" + }, + "Valoniaceae": { + "p": "Cladophorales", + "c": [ + "Ernodesmis", + "Valonia", + "Valoniopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Elakatothrix": { + "p": "Elakatotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ulvaceae": { + "p": "Ulvales", + "c": [ + "Blidingia", + "Gemina", + "Pseudoneochloris", + "Ruthnielsenia", + "Ulva", + "Umbraulva" + ], + "n": "", + "r": "FAMILY" + }, + "Ostreobineae": { + "p": "Bryopsidales", + "c": [ + "Ostreobiaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Polyphysaceae": { + "p": "Dasycladales", + "c": [ + "Acetabularia", + "Chalmasia", + "Halicoryne", + "Parvocaulis" + ], + "n": "", + "r": "FAMILY" + }, + "Characeae": { + "p": "Charales", + "c": [ + "Chara", + "Lamprothamnium", + "Lychnothamnus", + "Nitella", + "Nitellopsis", + "Sphaerochara", + "Tolypella" + ], + "n": "charophytes", + "r": "FAMILY" + }, + "Scourfieldia": { + "p": "Scourfieldiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllosiphon": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helicodictyaceae": { + "p": "Ulotrichales", + "c": [ + "Helicodictyon", + "Rhexinema", + "Ulosarcina" + ], + "n": "", + "r": "FAMILY" + }, + "Chaetosphaeridiaceae": { + "p": "Coleochaetales", + "c": [ + "Chaetosphaeridium" + ], + "n": "", + "r": "FAMILY" + }, + "Monomastix": { + "p": "Monomastigaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zygnematales": { + "p": "Zygnematophycidae", + "c": [ + "Mesotaeniaceae", + "Zygnemataceae" + ], + "n": "", + "r": "ORDER" + }, + "Pseudocharacium": { + "p": "Ignatiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dasycladaceae": { + "p": "Dasycladales", + "c": [ + "Batophora", + "Bornetella", + "Chloroclados", + "Cymopolia", + "Dasycladus", + "Neomeris" + ], + "n": "", + "r": "FAMILY" + }, + "Protoeuglena": { + "p": "Marsupiomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neodangemannia": { + "p": "Oltmansiellopsidales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chloroparvula": { + "p": "Chloropicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcinofilaceae": { + "p": "Ulotrichales", + "c": [ + "Sarcinofilum" + ], + "n": "", + "r": "FAMILY" + }, + "Haplomitriopsida": { + "p": "Marchantiophyta", + "c": [ + "Haplomitriidae", + "Treubiidae" + ], + "n": "", + "r": "CLASS" + }, + "Oedogoniales": { + "p": "OCC clade", + "c": [ + "Oedogoniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Desmidiales": { + "p": "Zygnematophycidae", + "c": [ + "Closteriaceae", + "Desmidiaceae", + "Gonatozygaceae", + "Peniaceae" + ], + "n": "desmids", + "r": "ORDER" + }, + "Okellyaceae": { + "p": "Cladophorales", + "c": [ + "Okellya" + ], + "n": "", + "r": "FAMILY" + }, + "Crustomastix": { + "p": "Crustomastigaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nephroselmis": { + "p": "Nephroselmidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Verdigellas": { + "p": "Palmophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Friedmannia": { + "p": "Microthamniales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Massjukichlorella": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiosporocerotopsida": { + "p": "Anthocerotophyta", + "c": [ + "Leiosporocerotales" + ], + "n": "", + "r": "CLASS" + }, + "Sphaeropleales": { + "p": "CS clade", + "c": [ + "Bracteacoccaceae", + "Bracteamorphaceae", + "Chromochloridaceae", + "Cylindrocapsaceae", + "Dictyochloridaceae", + "Dictyococcaceae", + "Hydrodictyaceae", + "Mychonastaceae", + "Neochloridaceae", + "Nephrocytiaceae", + "Pseudomuriellaceae", + "Radiococcaceae", + "Rotundellaceae", + "Scenedesmaceae", + "Schizochlamydaceae", + "Schroederiaceae", + "Selenastraceae", + "Sphaeropleaceae", + "Tumidellaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pedinomonas": { + "p": "Pedinomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prasiolaceae": { + "p": "Prasiolales", + "c": [ + "Edaphochlorella", + "Hormidiopsis", + "Prasiococcus", + "Prasiola", + "Prasiolopsis", + "Prasionella", + "Prasionema", + "Rosenvingiella", + "Rosenvingiellopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Tetrasporaceae": { + "p": "Tetrasporales", + "c": [ + "Gloeodendron", + "Tetraspora" + ], + "n": "", + "r": "FAMILY" + }, + "Watanabea": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorosarcinaceae": { + "p": "Chlorosarcinales", + "c": [ + "Chlorosarcina", + "Chlorosarcinopsis", + "Chlorosphaeropsis", + "Neochlorosarcina" + ], + "n": "", + "r": "FAMILY" + }, + "Dolichomastix": { + "p": "Dolichomastigaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetopeltidales": { + "p": "OCC clade", + "c": [ + "Chaetopeltidaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ctenocladaceae": { + "p": "Ulvales", + "c": [ + "Ctenocladus" + ], + "n": "", + "r": "FAMILY" + }, + "Scotinosphaera": { + "p": "Scotinosphaeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gomontiaceae": { + "p": "Ulotrichales", + "c": [ + "Collinsiella", + "Eugomontia", + "Gomontia" + ], + "n": "", + "r": "FAMILY" + }, + "Anadyomenaceae": { + "p": "Cladophorales", + "c": [ + "Anadyomene", + "Microdictyon" + ], + "n": "", + "r": "FAMILY" + }, + "Calidiella": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marsupiomonas": { + "p": "Marsupiomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cymbomonas": { + "p": "Pyramimonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Interfilum": { + "p": "Klebsormidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stichococcaceae": { + "p": "Prasiolales", + "c": [ + "Desmococcus", + "Deuterostichococcus", + "Diplosphaera", + "Protostichococcus", + "Stichococcus", + "Tetratostichococcus", + "Tritostichococcus" + ], + "n": "", + "r": "FAMILY" + }, + "Bolbocoleonaceae": { + "p": "Ulvales", + "c": [ + "Bolbocoleon" + ], + "n": "", + "r": "FAMILY" + }, + "Oocystaceae": { + "p": "Chlorellales", + "c": [ + "Eremosphaeroideae", + "Makinoelloideae", + "Oocystoideae", + "Pseudococcomyxa" + ], + "n": "", + "r": "FAMILY" + }, + "Trebouxiaceae": { + "p": "Trebouxiales", + "c": [ + "Asterochloris", + "Dictyochloropsis", + "Lobosphaera", + "Myrmecia", + "Parietochloris", + "Symbiochloris", + "Trebouxia", + "Trochisciopsis", + "Vulcanochloris" + ], + "n": "", + "r": "FAMILY" + }, + "Pyramimonas": { + "p": "Pyramimonadaceae", + "c": [ + "Pyramimonas subgen. Pyramimonas", + "Pyramimonas subgen. Trichocystis", + "Pyramimonas subgen. Vestigifera", + "Pyramimonas subgenus I" + ], + "n": "", + "r": "GENUS" + }, + "Oltmannsiellopsis": { + "p": "Oltmannsiellopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spirogloeales": { + "p": "Spirogloeophycidae", + "c": [ + "Spirogloeaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chaetophorales": { + "p": "OCC clade", + "c": [ + "Aphanochaetaceae", + "Barrancaceae", + "Chaetophoraceae", + "Fritschiellaceae", + "Schizomeridaceae", + "Uronemataceae" + ], + "n": "", + "r": "ORDER" + }, + "Mesostigma": { + "p": "Mesostigmataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halochlorococcum": { + "p": "Chlorocystidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micromonas": { + "p": "Mamiellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryophytina": { + "p": "Bryophyta", + "c": [ + "Bryopsida", + "Polytrichopsida", + "Oedipodiopsida", + "Tetraphidopsida" + ], + "n": "", + "r": "CLADE" + }, + "Ulotrichaceae": { + "p": "Ulotrichales", + "c": [ + "Acrosiphonia", + "Capsosiphon", + "Chlorothrix", + "Gloeotilopsis", + "Pseudothrix", + "Spongomorpha", + "Ulothrix", + "Urospora" + ], + "n": "", + "r": "FAMILY" + }, + "Halosphaera": { + "p": "Halosphaeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Koliellaceae": { + "p": "Prasiolales", + "c": [ + "Koliella", + "Raphidonema" + ], + "n": "", + "r": "FAMILY" + }, + "Ignatius": { + "p": "Ignatiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlamydomonadales": { + "p": "CS clade", + "c": [ + "Actinochloridaceae", + "Asteromonadaceae", + "Astrephomenaceae", + "Characiochloridaceae", + "Characiosiphonaceae", + "Chlamydomonadaceae", + "Chlorochytriaceae", + "Chlorococcaceae", + "Dunaliellaceae", + "Golenkiniaceae", + "Haematococcaceae", + "Palmellopsidaceae", + "Phacotaceae", + "Pleurastraceae", + "Sphaerocystidaceae", + "Spondylomoraceae", + "Tetrabaenaceae", + "Tetracystaceae", + "Volvocaceae" + ], + "n": "", + "r": "ORDER" + }, + "Desmochloris": { + "p": "Chlorocystidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocladophoraceae": { + "p": "Cladophorales", + "c": [ + "Pseudocladophora" + ], + "n": "", + "r": "FAMILY" + }, + "Polyblepharides": { + "p": "Polyblepharidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microthamniaceae": { + "p": "Microthamniales", + "c": [ + "Fusochloris", + "Microthamnion" + ], + "n": "", + "r": "FAMILY" + }, + "Klebsormidium": { + "p": "Klebsormidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boodleaceae": { + "p": "Cladophorales", + "c": [ + "Apjohnia", + "Boodlea", + "Chamaedoris", + "Cladophoropsis", + "Phyllodictyon", + "Struvea" + ], + "n": "", + "r": "FAMILY" + }, + "Palmophyllum": { + "p": "Palmophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kalinella": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kraftionemaceae": { + "p": "Ulotrichales", + "c": [ + "Kraftionema" + ], + "n": "", + "r": "FAMILY" + }, + "Leptosiraceae": { + "p": "Chlorellales", + "c": [ + "Pseudopleurococcus" + ], + "n": "", + "r": "FAMILY" + }, + "Viridiella": { + "p": "Watanabeales", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorocystis": { + "p": "Chlorocystidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picocystis": { + "p": "Picocystaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tupiellaceae": { + "p": "Ulotrichales", + "c": [ + "Tupiella", + "Vischerioclonium" + ], + "n": "", + "r": "FAMILY" + }, + "Palmoclathrus": { + "p": "Palmophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halimedineae": { + "p": "Bryopsidales", + "c": [ + "Caulerpaceae", + "Dichotomosiphonaceae", + "Halimedaceae", + "Pseudocodiaceae", + "Udoteaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Cloniophoraceae": { + "p": "Ulvales", + "c": [ + "Cloniophora" + ], + "n": "", + "r": "FAMILY" + }, + "Siphonocladaceae": { + "p": "Cladophorales", + "c": [ + "Boergesenia", + "Dictyosphaeria", + "Siphonocladus", + "Struveopsis", + "Ventricaria" + ], + "n": "", + "r": "FAMILY" + }, + "Symbiochlorum": { + "p": "Ignatiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladophoraceae": { + "p": "Cladophorales", + "c": [ + "Basicladia", + "Chaetocladiella", + "Chaetomorpha", + "Cladophora", + "Gemmiphora", + "Lurbica", + "Lychaete", + "Pseudorhizoclonium", + "Rama", + "Rhizoclonium", + "Spongiochrysis", + "Vandenhoekia", + "Willeella" + ], + "n": "", + "r": "FAMILY" + }, + "Protosiphonaceae": { + "p": "Protosiphonales", + "c": [ + "Pharao", + "Protosiphon", + "Spongiochloris", + "Spongiosarcinopsis", + "Valeriella" + ], + "n": "", + "r": "FAMILY" + }, + "Keratococcus": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Percursaria": { + "p": "Kornmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parachlorella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gemina": { + "p": "Ulvaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Auxenochlorella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marvania": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spermatophyta": { + "p": "Euphyllophyta", + "c": [ + "Acrogymnospermae", + "Magnoliopsida" + ], + "n": "seed plants", + "r": "CLADE" + }, + "Blidingia": { + "p": "Ulvaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nitellopsis": { + "p": "Characeae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrochaete": { + "p": "Ulvellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Endolithella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nitella": { + "p": "Characeae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Printzina": { + "p": "Trentepohliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chloroparva": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marasphaerium": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jaoa": { + "p": "Jaoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palmellopsis": { + "p": "Palmellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apatococcus": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Derbesiaceae": { + "p": "Bryopsidineae", + "c": [ + "Derbesia", + "Pedobesia" + ], + "n": "", + "r": "FAMILY" + }, + "Oncosaccus": { + "p": "Palmellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blasiidae": { + "p": "Marchantiopsida", + "c": [ + "Blasiales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Dendrocerotidae": { + "p": "Anthocerotopsida", + "c": [ + "Dendrocerotales", + "Phymatocerotales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Takakiopsida": { + "p": "Takakiophytina", + "c": [ + "Takakiales" + ], + "n": "", + "r": "CLASS" + }, + "Kornmannia": { + "p": "Kornmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prototheca": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladophorella": { + "p": "Pithophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arnoldiella": { + "p": "Pithophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoneochloris": { + "p": "Ulvaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lobosphaeropsis": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heveochlorella": { + "p": "Watanabea clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coleochaete": { + "p": "Coleochaetaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parvocaulis": { + "p": "Polyphysaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ulvaria": { + "p": "Monostromataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lychnothamnus": { + "p": "Characeae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heynigia": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polypodiopsida": { + "p": "Euphyllophyta", + "c": [ + "core leptosporangiate ferns", + "Equisetidae", + "Marattiidae", + "Ophioglossidae", + "Polypodiidae", + "Psilotopsida" + ], + "n": "ferns", + "r": "CLASS" + }, + "Edaphochloris": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planophila": { + "p": "Planophilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Masaia": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lithotrichon": { + "p": "Kornmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marchantiidae": { + "p": "Marchantiopsida", + "c": [ + "Lunulariales", + "Marchantiales", + "Neohodgsoniales", + "Sphaerocarpales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Tetraselmis": { + "p": "Chlorodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phaeophila": { + "p": "Phaeophilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Undulifilum": { + "p": "Kornmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphagnopsida": { + "p": "Sphagnophytina", + "c": [ + "Sphagnales" + ], + "n": "", + "r": "CLASS" + }, + "Muriella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parachloroidium": { + "p": "Watanabea clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerochara": { + "p": "Characeae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mucidosphaerium": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wittrockiella": { + "p": "Pithophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hindakia": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planktochlorella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ernodesmis": { + "p": "Valoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trentepohlia": { + "p": "Trentepohliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruthnielsenia": { + "p": "Ulvaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tolypella": { + "p": "Characeae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pumiliosphaera": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andreaeobryopsida": { + "p": "Andreaeobryophytina", + "c": [ + "Andreaeobryales" + ], + "n": "", + "r": "CLASS" + }, + "Aegagropilopsis": { + "p": "Pithophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stomatochroon": { + "p": "Trentepohliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kalenjinia": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hazenia": { + "p": "Hazeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lamprothamnium": { + "p": "Characeae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isoetales": { + "p": "Lycopodiopsida", + "c": [ + "Isoetaceae" + ], + "n": "quillworts", + "r": "ORDER" + }, + "Prasinocladus": { + "p": "Chlorodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryopsidaceae": { + "p": "Bryopsidineae", + "c": [ + "Bryopsidella", + "Bryopsis", + "Lambia", + "Pseudochlorodesmis", + "Pseudoderbesia", + "Trichosolen" + ], + "n": "", + "r": "FAMILY" + }, + "Phycopeltis": { + "p": "Trentepohliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ulva": { + "p": "Ulvaceae", + "c": [], + "n": "sea lettuces", + "r": "GENUS" + }, + "Ostreobiaceae": { + "p": "Ostreobineae", + "c": [ + "Ostreobium" + ], + "n": "", + "r": "FAMILY" + }, + "Jungermanniidae": { + "p": "Jungermanniopsida", + "c": [ + "Jungermanniales", + "Porellales", + "Ptilidiales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Closteriopsis": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halicoryne": { + "p": "Polyphysaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monostroma": { + "p": "Monostromataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diacanthos": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tellamia": { + "p": "Kornmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorocladiella": { + "p": "Pithophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nannochloris": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudochlorella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coronacoccus": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Umbraulva": { + "p": "Ulvaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gayralia": { + "p": "Monostromataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochlochaete": { + "p": "Ulvellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhopalosolen": { + "p": "Rhopalosolenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codiaceae": { + "p": "Bryopsidineae", + "c": [ + "Codium" + ], + "n": "", + "r": "FAMILY" + }, + "Heterochlorella": { + "p": "Watanabea clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudochloris": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephaleuros": { + "p": "Trentepohliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chalmasia": { + "p": "Polyphysaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorella clade": { + "p": "Chlorellaceae", + "c": [ + "Actinastrum", + "Chlorella", + "Dictyosphaerium", + "Didymogenes", + "Hegewaldia", + "Meyerella", + "Micractinium" + ], + "n": "", + "r": "CLADE" + }, + "Leptochlorella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladogonium": { + "p": "Pithophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Graesiella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pelliidae": { + "p": "Jungermanniopsida", + "c": [ + "Fossombroniales", + "Pallaviciniales", + "Pelliales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Helicosporidium": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geminella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kermatia": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Valonia": { + "p": "Valoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protomonostroma": { + "p": "Monostromataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudendoclonium": { + "p": "Kornmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acetabularia": { + "p": "Polyphysaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Selaginellales": { + "p": "Lycopodiopsida", + "c": [ + "Selaginellaceae" + ], + "n": "spike mosses", + "r": "ORDER" + }, + "Catena": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicloster": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Notothylidae": { + "p": "Anthocerotopsida", + "c": [ + "Notothyladales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Metzgeriidae": { + "p": "Jungermanniopsida", + "c": [ + "Metzgeriales", + "Pleuroziales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Anthocerotidae": { + "p": "Anthocerotopsida", + "c": [ + "Anthocerotales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Lycopodiales": { + "p": "Lycopodiopsida", + "c": [ + "Lycopodiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ulvella": { + "p": "Ulvellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andreaeopsida": { + "p": "Andreaeophytina", + "c": [ + "Andreaeales" + ], + "n": "", + "r": "CLASS" + }, + "Physolinum": { + "p": "Trentepohliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aegagropila": { + "p": "Pithophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloeotila": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudobryopsidaceae": { + "p": "Bryopsidineae", + "c": [ + "Pseudobryopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Scherffelia": { + "p": "Chlorodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Compactochlorella": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carolibrandtia": { + "p": "Chlorellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Valoniopsis": { + "p": "Valoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chara": { + "p": "Characeae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pithophora": { + "p": "Pithophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Annulotesta": { + "p": "Kornmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trochisciopsis": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetraspora": { + "p": "Tetrasporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcinofilum": { + "p": "Sarcinofilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prasionella": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizomeridaceae": { + "p": "Chaetophorales", + "c": [ + "Schizomeris" + ], + "n": "", + "r": "FAMILY" + }, + "Helicodictyon": { + "p": "Helicodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tumidellaceae": { + "p": "Sphaeropleales", + "c": [ + "Tumidella" + ], + "n": "", + "r": "FAMILY" + }, + "Schroederiaceae": { + "p": "Sphaeropleales", + "c": [ + "Pseudoschroederia", + "Schroederia" + ], + "n": "", + "r": "FAMILY" + }, + "Eremosphaeroideae": { + "p": "Oocystaceae", + "c": [ + "Eremosphaera", + "Neglectella" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Stichococcus": { + "p": "Stichococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhexinema": { + "p": "Helicodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Treubiidae": { + "p": "Haplomitriopsida", + "c": [ + "Treubiales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Chlorosphaeropsis": { + "p": "Chlorosarcinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudococcomyxa": { + "p": "Oocystaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parietochloris": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cymopolia": { + "p": "Dasycladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gonatozygaceae": { + "p": "Desmidiales", + "c": [ + "Genicularina", + "Gonatozygon" + ], + "n": "", + "r": "FAMILY" + }, + "Trebouxia": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gomontia": { + "p": "Gomontiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neomeris": { + "p": "Dasycladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloeodendron": { + "p": "Tetrasporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scenedesmaceae": { + "p": "Sphaeropleales", + "c": [ + "Acutodesmus", + "Asterarcys", + "Chodatodesmus", + "Coelastrella", + "Coelastropsis", + "Coelastrum", + "Comasiella", + "Coronastrum", + "Crucigenia", + "Desmodesmus", + "Didymocystis", + "Dimorphococcus", + "Enallax", + "Flechtneria", + "Hariotina", + "Hylodesmus", + "Komarekia", + "Neodesmus", + "Pectinodesmus", + "Pectodictyon", + "Pediludiella", + "Protodesmus", + "Pseudodidymocystis", + "Pseudospongiococcum", + "Scenedesmus", + "Scotiellopsis", + "Tetradesmus", + "Tetranephris", + "Verrucodesmus", + "Westella" + ], + "n": "", + "r": "FAMILY" + }, + "Radiococcaceae": { + "p": "Sphaeropleales", + "c": [ + "Coenococcus", + "Follicularia", + "Gloeocystis", + "Neocystis", + "Radiococcus", + "Sphaerochloris", + "Sporotetras" + ], + "n": "", + "r": "FAMILY" + }, + "Pyramimonas subgen. Pyramimonas": { + "p": "Pyramimonas", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Gloeotilopsis": { + "p": "Ulotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tritostichococcus": { + "p": "Stichococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asterochloris": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ulosarcina": { + "p": "Helicodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microdictyon": { + "p": "Anadyomenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nephrocytiaceae": { + "p": "Sphaeropleales", + "c": [ + "Nephrocytium" + ], + "n": "", + "r": "FAMILY" + }, + "Pyramimonas subgen. Vestigifera": { + "p": "Pyramimonas", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Rosenvingiella": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Selenastraceae": { + "p": "Sphaeropleales", + "c": [ + "Ankistrodesmus", + "Chlorolobion", + "Curvastrum", + "Drepanochloris", + "Kirchneriella", + "Messastrum", + "Monoraphidium", + "Nephrochlamys", + "Ourococcus", + "Planktococcomyxa", + "Podohedriella", + "Pseudokirchneriella", + "Quadrigula", + "Raphidocelis", + "Rhombocystis", + "Selenastrum", + "Viridiparva" + ], + "n": "", + "r": "FAMILY" + }, + "Prasionema": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Closteriaceae": { + "p": "Desmidiales", + "c": [ + "Closterium", + "Spinoclosterium" + ], + "n": "", + "r": "FAMILY" + }, + "Collinsiella": { + "p": "Gomontiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Okellya": { + "p": "Okellyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prasiola": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vulcanochloris": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplosphaera": { + "p": "Stichococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rotundellaceae": { + "p": "Sphaeropleales", + "c": [ + "Rotundella" + ], + "n": "", + "r": "FAMILY" + }, + "Acrosiphonia": { + "p": "Ulotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Batophora": { + "p": "Dasycladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neochloridaceae": { + "p": "Sphaeropleales", + "c": [ + "Ascochloris", + "Botryosphaerella", + "Characiopodium", + "Chlorotetraedron", + "Echinosphaeridium", + "Neochloris", + "Polyedriopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Dictyochloridaceae": { + "p": "Sphaeropleales", + "c": [ + "Dictyochloris" + ], + "n": "", + "r": "FAMILY" + }, + "Lobosphaera": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudomuriellaceae": { + "p": "Sphaeropleales", + "c": [ + "Pseudomuriella" + ], + "n": "", + "r": "FAMILY" + }, + "Bornetella": { + "p": "Dasycladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyochloropsis": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dasycladus": { + "p": "Dasycladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oedipodiopsida": { + "p": "Bryophytina", + "c": [ + "Oedipodiales" + ], + "n": "", + "r": "CLASS" + }, + "Barrancaceae": { + "p": "Chaetophorales", + "c": [ + "Barranca" + ], + "n": "", + "r": "FAMILY" + }, + "Chaetopeltidaceae": { + "p": "Chaetopeltidales", + "c": [ + "Chaetopeltis", + "Dicranochaete", + "Floydiella", + "Gormaniella", + "Hormotilopsis", + "Koshicola", + "Pseudulvella" + ], + "n": "", + "r": "FAMILY" + }, + "Oedogoniaceae": { + "p": "Oedogoniales", + "c": [ + "Bulbochaete", + "Oedocladium", + "Oedogonium" + ], + "n": "", + "r": "FAMILY" + }, + "Prasiococcus": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chloroclados": { + "p": "Dasycladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hormidiopsis": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaeropleaceae": { + "p": "Sphaeropleales", + "c": [ + "Ankyra", + "Atractomorpha", + "Cryptodesmus", + "Parallela", + "Radiofilum", + "Sphaeroplea", + "Tetraedron" + ], + "n": "", + "r": "FAMILY" + }, + "Bryopsida": { + "p": "Bryophytina", + "c": [ + "Bryidae", + "Buxbaumiidae", + "Dicranidae", + "Diphysciidae", + "Funariidae", + "pleurocarpids", + "Timmiidae" + ], + "n": "", + "r": "CLASS" + }, + "Desmococcus": { + "p": "Stichococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anadyomene": { + "p": "Anadyomenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphanochaetaceae": { + "p": "Chaetophorales", + "c": [ + "Aphanochaete", + "Caespitella" + ], + "n": "", + "r": "FAMILY" + }, + "Edaphochlorella": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizochlamydaceae": { + "p": "Sphaeropleales", + "c": [ + "Planktosphaeria", + "Schizochlamys" + ], + "n": "", + "r": "FAMILY" + }, + "Capsosiphon": { + "p": "Ulotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiosporocerotales": { + "p": "Leiosporocerotopsida", + "c": [ + "Leiosporocerotaceae" + ], + "n": "", + "r": "ORDER" + }, + "Uronemataceae": { + "p": "Chaetophorales", + "c": [ + "Uronema" + ], + "n": "", + "r": "FAMILY" + }, + "Chaetosphaeridium": { + "p": "Chaetosphaeridiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesotaeniaceae": { + "p": "Zygnematales", + "c": [ + "Ancylonema", + "Cylindrocystis", + "Mesotaenium", + "Roya", + "Tortitaenia" + ], + "n": "", + "r": "FAMILY" + }, + "Hydrodictyaceae": { + "p": "Sphaeropleales", + "c": [ + "Hydrodictyon", + "Lacunastrum", + "Monactinus", + "Parapediastrum", + "Pediastrum", + "Pseudopediastrum", + "Sorastrum", + "Stauridium" + ], + "n": "", + "r": "FAMILY" + }, + "Prasiolopsis": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetratostichococcus": { + "p": "Stichococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorosarcinopsis": { + "p": "Chlorosarcinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bolbocoleon": { + "p": "Bolbocoleonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chromochloridaceae": { + "p": "Sphaeropleales", + "c": [ + "Chromochloris" + ], + "n": "", + "r": "FAMILY" + }, + "Bracteacoccaceae": { + "p": "Sphaeropleales", + "c": [ + "Bracteacoccus" + ], + "n": "", + "r": "FAMILY" + }, + "Pyramimonas subgen. Trichocystis": { + "p": "Pyramimonas", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Dictyococcaceae": { + "p": "Sphaeropleales", + "c": [ + "Dictyococcus" + ], + "n": "", + "r": "FAMILY" + }, + "Chlorosarcina": { + "p": "Chlorosarcinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplomitriidae": { + "p": "Haplomitriopsida", + "c": [ + "Calobryales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Oocystoideae": { + "p": "Oocystaceae", + "c": [ + "Amphikrikos", + "Densicystis", + "Droopiella", + "Echinocoleum", + "Euchlorocystis", + "Franceia", + "Granulocystis", + "Granulocystopsis", + "Lagerheimia", + "Oocystella", + "Oocystidium", + "Oocystis", + "Quadricoccus", + "Reticulocystis", + "Siderocystopsis", + "Tetrachlorella" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Myrmecia": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deuterostichococcus": { + "p": "Stichococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ctenocladus": { + "p": "Ctenocladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorothrix": { + "p": "Ulotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bracteamorphaceae": { + "p": "Sphaeropleales", + "c": [ + "Bracteamorpha" + ], + "n": "", + "r": "FAMILY" + }, + "Cylindrocapsaceae": { + "p": "Sphaeropleales", + "c": [ + "Cylindrocapsa", + "Fusola" + ], + "n": "", + "r": "FAMILY" + }, + "Eugomontia": { + "p": "Gomontiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fritschiellaceae": { + "p": "Chaetophorales", + "c": [ + "Fritschiella" + ], + "n": "", + "r": "FAMILY" + }, + "Spirogloeaceae": { + "p": "Spirogloeales", + "c": [ + "Spirogloea" + ], + "n": "", + "r": "FAMILY" + }, + "Makinoelloideae": { + "p": "Oocystaceae", + "c": [ + "Ecballocystis", + "Ecballocystopsis", + "Elongatocystis", + "Makinoella", + "Willea" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Peniaceae": { + "p": "Desmidiales", + "c": [ + "Penium" + ], + "n": "", + "r": "FAMILY" + }, + "Rosenvingiellopsis": { + "p": "Prasiolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desmidiaceae": { + "p": "Desmidiales", + "c": [ + "Actinotaenium", + "Arthrodesmus", + "Bambusina", + "Cosmarium", + "Cosmocladium", + "Desmidium", + "Docidium", + "Euastrum", + "Groenbladia", + "Haplotaenium", + "Heimansia", + "Hyalotheca", + "Micrasterias", + "Onychonema", + "Oocardium", + "Phymatodocis", + "Pleurotaenium", + "Pseudomicrasterias", + "Sphaerozosma", + "Spondylosium", + "Staurastrum", + "Staurodesmus", + "Teilingia", + "Tetmemorus", + "Triplastrum", + "Triploceras", + "Xanthidium" + ], + "n": "", + "r": "FAMILY" + }, + "Pyramimonas subgenus I": { + "p": "Pyramimonas", + "c": [], + "n": "", + "r": "CLADE" + }, + "Tetraphidopsida": { + "p": "Bryophytina", + "c": [ + "Tetraphidales" + ], + "n": "", + "r": "CLASS" + }, + "Chaetophoraceae": { + "p": "Chaetophorales", + "c": [ + "Chaetophora", + "Chaetophoropsis", + "Dilabifilum", + "Draparnaldia", + "Draparnaldioides", + "Gongrosira", + "Hormotila", + "Jaagiella", + "Pleurococcus", + "Stigeoclonium", + "Uvulifera" + ], + "n": "", + "r": "FAMILY" + }, + "Neochlorosarcina": { + "p": "Chlorosarcinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protostichococcus": { + "p": "Stichococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polytrichopsida": { + "p": "Bryophytina", + "c": [ + "Polytrichales" + ], + "n": "hair mosses", + "r": "CLASS" + }, + "Zygnemataceae": { + "p": "Zygnematales", + "c": [ + "Entransia", + "Mougeotia", + "Mougeotiopsis", + "Netrium", + "Nucleotaenium", + "Planotaenium", + "Sirogonium", + "Spirogyra", + "Temnogametum", + "Zygnema", + "Zygnemopsis", + "Zygogonium" + ], + "n": "", + "r": "FAMILY" + }, + "Symbiochloris": { + "p": "Trebouxiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mychonastaceae": { + "p": "Sphaeropleales", + "c": [ + "Mychonastes" + ], + "n": "", + "r": "FAMILY" + }, + "Boodlea": { + "p": "Boodleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asteromonadaceae": { + "p": "Chlamydomonadales", + "c": [ + "Asteromonas", + "Halochlorella" + ], + "n": "", + "r": "FAMILY" + }, + "Spongiochloris": { + "p": "Protosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caulerpaceae": { + "p": "Halimedineae", + "c": [ + "Caulerpa", + "Caulerpella" + ], + "n": "", + "r": "FAMILY" + }, + "Haematococcaceae": { + "p": "Chlamydomonadales", + "c": [ + "Balticola", + "Chlorogonium", + "Gungnir", + "Haematococcus", + "Hyalogonium", + "Rusalka", + "Stephanosphaera" + ], + "n": "", + "r": "FAMILY" + }, + "Pharao": { + "p": "Protosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Struvea": { + "p": "Boodleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichotomosiphonaceae": { + "p": "Halimedineae", + "c": [ + "Avrainvillea", + "Cladocephalus", + "Dichotomosiphon" + ], + "n": "", + "r": "FAMILY" + }, + "Chaetocladiella": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astrephomenaceae": { + "p": "Chlamydomonadales", + "c": [ + "Astrephomene" + ], + "n": "", + "r": "FAMILY" + }, + "Ulothrix": { + "p": "Ulotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dunaliellaceae": { + "p": "Chlamydomonadales", + "c": [ + "Dunaliella", + "Hafniomonas", + "Spermatozopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Willeella": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phacotaceae": { + "p": "Chlamydomonadales", + "c": [ + "Cephalomonas", + "Dysmorphococcus", + "Phacotus", + "Pteromonas", + "Wislouchiella" + ], + "n": "", + "r": "FAMILY" + }, + "Chaetomorpha": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaedoris": { + "p": "Boodleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrogymnospermae": { + "p": "Spermatophyta", + "c": [ + "Coniferophyta", + "Cycadopsida", + "Cycadophyta", + "Ginkgoopsida", + "Ginkgophyta", + "Gnetophyta", + "Gnetopsida", + "Pinopsida" + ], + "n": "", + "r": "CLADE" + }, + "Magnoliopsida": { + "p": "Spermatophyta", + "c": [ + "Amborellales", + "Austrobaileyales", + "Mesangiospermae", + "Nymphaeales", + "Thymelaceae" + ], + "n": "flowering plants", + "r": "CLASS" + }, + "Palmellopsidaceae": { + "p": "Chlamydomonadales", + "c": [ + "Asterococcus", + "Chlamydocapsa", + "Gloeococcus" + ], + "n": "", + "r": "FAMILY" + }, + "Chlorochytriaceae": { + "p": "Chlamydomonadales", + "c": [ + "Chlorochytrium" + ], + "n": "", + "r": "FAMILY" + }, + "Rhizoclonium": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrabaenaceae": { + "p": "Chlamydomonadales", + "c": [ + "Basichlamys", + "Tetrabaena" + ], + "n": "", + "r": "FAMILY" + }, + "Pseudorhizoclonium": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protosiphon": { + "p": "Protosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Basicladia": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cloniophora": { + "p": "Cloniophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Struveopsis": { + "p": "Siphonocladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spongomorpha": { + "p": "Ulotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rama": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerocystidaceae": { + "p": "Chlamydomonadales", + "c": [ + "Sphaerocystis" + ], + "n": "", + "r": "FAMILY" + }, + "Microthamnion": { + "p": "Microthamniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kraftionema": { + "p": "Kraftionemaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinochloridaceae": { + "p": "Chlamydomonadales", + "c": [ + "Actinochloris", + "Deasonia", + "Macrochloris" + ], + "n": "", + "r": "FAMILY" + }, + "Pseudocodiaceae": { + "p": "Halimedineae", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Pseudopleurococcus": { + "p": "Leptosiraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lurbica": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tupiella": { + "p": "Tupiellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladophoropsis": { + "p": "Boodleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyosphaeria": { + "p": "Siphonocladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Valeriella": { + "p": "Protosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorococcaceae": { + "p": "Chlamydomonadales", + "c": [ + "Axilococcus", + "Borodinellopsis", + "Characium", + "Chlorococcum", + "Cystomonas", + "Fasciculochloris", + "Hemiflagellochloris", + "Heterotetracystis", + "Hydrocytium", + "Nautococcus", + "Neospongiococcum", + "Radiosphaera", + "Spongiococcum" + ], + "n": "", + "r": "FAMILY" + }, + "Phyllodictyon": { + "p": "Boodleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urospora": { + "p": "Ulotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocladophora": { + "p": "Pseudocladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudothrix": { + "p": "Ulotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vischerioclonium": { + "p": "Tupiellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Volvocaceae": { + "p": "Chlamydomonadales", + "c": [ + "Colemanosphaera", + "Eudorina", + "Gonium", + "Hamakko", + "Hapalochloris", + "Lobomonas", + "Pandorina", + "Platydorina", + "Pleodorina", + "Tabris", + "Volvox", + "Volvulina", + "Yamagishiella" + ], + "n": "", + "r": "FAMILY" + }, + "Boergesenia": { + "p": "Siphonocladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vandenhoekia": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siphonocladus": { + "p": "Siphonocladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Golenkiniaceae": { + "p": "Chlamydomonadales", + "c": [ + "Golenkinia" + ], + "n": "", + "r": "FAMILY" + }, + "Apjohnia": { + "p": "Boodleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raphidonema": { + "p": "Koliellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spongiosarcinopsis": { + "p": "Protosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ventricaria": { + "p": "Siphonocladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurastraceae": { + "p": "Chlamydomonadales", + "c": [ + "Pleurastrum" + ], + "n": "", + "r": "FAMILY" + }, + "Udoteaceae": { + "p": "Halimedineae", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Tetracystaceae": { + "p": "Chlamydomonadales", + "c": [ + "Axilosphaera", + "Tetracystis" + ], + "n": "", + "r": "FAMILY" + }, + "Koliella": { + "p": "Koliellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladophora": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlamydomonadaceae": { + "p": "Chlamydomonadales", + "c": [ + "Brachiomonas", + "Carteria", + "Chlamydomonas", + "Chloromonadinia", + "Dangeardinia", + "Desmotetra", + "Gymnomonas", + "Halosarcinochlamys", + "Heterochlamydomonas", + "Hyalomonas", + "Lobochlamys", + "Microglena", + "Oogamochlamys", + "Oophila", + "Ostravamonas", + "Polytoma", + "Polytomella", + "Pseudocarteria", + "Rhysamphichloris", + "Sanguina", + "Scotiella", + "Vitreochlamys" + ], + "n": "", + "r": "FAMILY" + }, + "Spondylomoraceae": { + "p": "Chlamydomonadales", + "c": [ + "Pascherina", + "Pyrobotrys" + ], + "n": "", + "r": "FAMILY" + }, + "Spongiochrysis": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Characiochloridaceae": { + "p": "Chlamydomonadales", + "c": [ + "Characiochloris", + "Chlamydopodium" + ], + "n": "", + "r": "FAMILY" + }, + "Characiosiphonaceae": { + "p": "Chlamydomonadales", + "c": [ + "Characiosiphon", + "Lobocharacium" + ], + "n": "", + "r": "FAMILY" + }, + "Fusochloris": { + "p": "Microthamniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lychaete": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gemmiphora": { + "p": "Cladophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halimedaceae": { + "p": "Halimedineae", + "c": [], + "n": "", + "r": "FAMILY" + }, + "core leptosporangiate ferns": { + "p": "Polypodiopsida", + "c": [], + "n": "", + "r": "CLADE" + }, + "Blasiales": { + "p": "Blasiidae", + "c": [ + "Blasiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Sphaerocarpales": { + "p": "Marchantiidae", + "c": [ + "Monocarpaceae", + "Riellaceae", + "Sphaerocarpaceae" + ], + "n": "", + "r": "ORDER" + }, + "Derbesia": { + "p": "Derbesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lunulariales": { + "p": "Marchantiidae", + "c": [ + "Lunulariaceae" + ], + "n": "", + "r": "ORDER" + }, + "Sphagnales": { + "p": "Sphagnopsida", + "c": [ + "Ambuchananiaceae", + "Flatbergiaceae", + "Sphagnaceae" + ], + "n": "", + "r": "ORDER" + }, + "Polypodiidae": { + "p": "Polypodiopsida", + "c": [ + "Cyatheales", + "Gleicheniales", + "Hymenophyllales", + "Osmundales", + "Polypodiales", + "Schizaeales", + "Salviniales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Equisetidae": { + "p": "Polypodiopsida", + "c": [ + "Equisetales" + ], + "n": "horsetails", + "r": "SUBCLASS" + }, + "Marchantiales": { + "p": "Marchantiidae", + "c": [ + "Aytoniaceae", + "Cleveaceae", + "Conocephalaceae", + "Corsiniaceae", + "Cyathodiaceae", + "Dumortieraceae", + "Exormothecaceae", + "Marchantiaceae", + "Monocleaceae", + "Monosoleniaceae", + "Oxymitraceae", + "Ricciaceae", + "Targioniaceae", + "Wiesnerellaceae" + ], + "n": "", + "r": "ORDER" + }, + "Dendrocerotales": { + "p": "Dendrocerotidae", + "c": [ + "Dendrocerotaceae" + ], + "n": "", + "r": "ORDER" + }, + "Marattiidae": { + "p": "Polypodiopsida", + "c": [ + "Marattiales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Takakiales": { + "p": "Takakiopsida", + "c": [ + "Takakiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Neohodgsoniales": { + "p": "Marchantiidae", + "c": [ + "Neohodgsoniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Psilotopsida": { + "p": "Polypodiopsida", + "c": [], + "n": "", + "r": "CLADE" + }, + "Phymatocerotales": { + "p": "Dendrocerotidae", + "c": [ + "Phymatocerotaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ophioglossidae": { + "p": "Polypodiopsida", + "c": [ + "Ophioglossales", + "Psilotales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Pedobesia": { + "p": "Derbesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptilidiales": { + "p": "Jungermanniidae", + "c": [ + "Herzogianthaceae", + "Neotrichocoleaceae", + "Ptilidiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Isoetaceae": { + "p": "Isoetales", + "c": [ + "Isoetes" + ], + "n": "quillwort family", + "r": "FAMILY" + }, + "Porellales": { + "p": "Jungermanniidae", + "c": [ + "Jubulineae", + "Porellineae", + "Radulineae" + ], + "n": "", + "r": "ORDER" + }, + "Pseudochlorodesmis": { + "p": "Bryopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codium": { + "p": "Codiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lambia": { + "p": "Bryopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andreaeobryales": { + "p": "Andreaeobryopsida", + "c": [ + "Andreaeobryaceae" + ], + "n": "", + "r": "ORDER" + }, + "Trichosolen": { + "p": "Bryopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ostreobium": { + "p": "Ostreobiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoderbesia": { + "p": "Bryopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jungermanniales": { + "p": "Jungermanniidae", + "c": [ + "Cephaloziineae", + "Jungermanniineae", + "Lophocoleineae", + "Myliineae", + "Perssoniellineae" + ], + "n": "", + "r": "ORDER" + }, + "Bryopsis": { + "p": "Bryopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryopsidella": { + "p": "Bryopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neglectella": { + "p": "Eremosphaeroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hegewaldia": { + "p": "Chlorella clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyosphaerium": { + "p": "Chlorella clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tumidella": { + "p": "Tumidellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andreaeales": { + "p": "Andreaeopsida", + "c": [ + "Andreaeaceae" + ], + "n": "", + "r": "ORDER" + }, + "Micractinium": { + "p": "Chlorella clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoschroederia": { + "p": "Schroederiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthocerotales": { + "p": "Anthocerotidae", + "c": [ + "Anthocerotaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chlorella": { + "p": "Chlorella clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymogenes": { + "p": "Chlorella clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudobryopsis": { + "p": "Pseudobryopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pelliales": { + "p": "Pelliidae", + "c": [ + "Noterocladaceae", + "Pelliaceae" + ], + "n": "", + "r": "ORDER" + }, + "Metzgeriales": { + "p": "Metzgeriidae", + "c": [ + "Aneuraceae", + "Metzgeriaceae", + "Mizutaniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Fossombroniales": { + "p": "Pelliidae", + "c": [ + "Calyculariineae", + "Fossombroniineae", + "Makinoiineae" + ], + "n": "", + "r": "ORDER" + }, + "Schizomeris": { + "p": "Schizomeridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleuroziales": { + "p": "Metzgeriidae", + "c": [ + "Pleuroziaceae" + ], + "n": "", + "r": "ORDER" + }, + "Actinastrum": { + "p": "Chlorella clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lycopodiaceae": { + "p": "Lycopodiales", + "c": [ + "Huperzioideae", + "Lycopodielloideae", + "Lycopodioideae" + ], + "n": "clubmoss family", + "r": "FAMILY" + }, + "Meyerella": { + "p": "Chlorella clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremosphaera": { + "p": "Eremosphaeroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pallaviciniales": { + "p": "Pelliidae", + "c": [ + "Pallaviciniineae", + "Phyllothalliineae" + ], + "n": "", + "r": "ORDER" + }, + "Schroederia": { + "p": "Schroederiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Selaginellaceae": { + "p": "Selaginellales", + "c": [ + "Selaginella" + ], + "n": "spike mosses", + "r": "FAMILY" + }, + "Notothyladales": { + "p": "Notothylidae", + "c": [ + "Notothyladaceae" + ], + "n": "", + "r": "ORDER" + }, + "Scenedesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetradesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spinoclosterium": { + "p": "Closteriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerochloris": { + "p": "Radiococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Messastrum": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pectinodesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coenococcus": { + "p": "Radiococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neocystis": { + "p": "Radiococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protodesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hariotina": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coelastrum": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viridiparva": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Follicularia": { + "p": "Radiococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloeocystis": { + "p": "Radiococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asterarcys": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kirchneriella": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desmodesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drepanochloris": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetranephris": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Verrucodesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neodesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scotiellopsis": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chodatodesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymocystis": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhombocystis": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curvastrum": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Treubiales": { + "p": "Treubiidae", + "c": [ + "Treubiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Comasiella": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pectodictyon": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planktococcomyxa": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Komarekia": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gonatozygon": { + "p": "Gonatozygaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crucigenia": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudospongiococcum": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monoraphidium": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Selenastrum": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coelastrella": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Closterium": { + "p": "Closteriaceae", + "c": [ + "Closterium peracerosum-strigosum-littorale complex" + ], + "n": "", + "r": "GENUS" + }, + "Pediludiella": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nephrochlamys": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ourococcus": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quadrigula": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raphidocelis": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Enallax": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylodesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coronastrum": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acutodesmus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudodidymocystis": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Genicularina": { + "p": "Gonatozygaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudokirchneriella": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podohedriella": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coelastropsis": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Westella": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorolobion": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dimorphococcus": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sporotetras": { + "p": "Radiococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flechtneria": { + "p": "Scenedesmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nephrocytium": { + "p": "Nephrocytiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ankistrodesmus": { + "p": "Selenastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radiococcus": { + "p": "Radiococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parallela": { + "p": "Sphaeropleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cylindrocystis": { + "p": "Mesotaeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pediastrum": { + "p": "Hydrodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bambusina": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranidae": { + "p": "Bryopsida", + "c": [ + "Archidiales", + "Bryoxiphiales", + "Dicranales", + "Grimmiales", + "Pottiales", + "Pseudoditrichales", + "Scouleriales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Aphanochaete": { + "p": "Aphanochaetaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euchlorocystis": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Makinoella": { + "p": "Makinoelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Floydiella": { + "p": "Chaetopeltidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorotetraedron": { + "p": "Neochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bulbochaete": { + "p": "Oedogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barranca": { + "p": "Barrancaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizochlamys": { + "p": "Schizochlamydaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Characiopodium": { + "p": "Neochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bracteacoccus": { + "p": "Bracteacoccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echinocoleum": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrodictyon": { + "p": "Hydrodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buxbaumiidae": { + "p": "Bryopsida", + "c": [ + "Buxbaumiales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Stauridium": { + "p": "Hydrodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spirogloea": { + "p": "Spirogloeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Franceia": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oedogonium": { + "p": "Oedogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atractomorpha": { + "p": "Sphaeropleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ecballocystopsis": { + "p": "Makinoelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Funariidae": { + "p": "Bryopsida", + "c": [ + "Encalyptales", + "Funariales", + "Gigaspermales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Bryidae": { + "p": "Bryopsida", + "c": [ + "Bryanae", + "Hypnanae" + ], + "n": "", + "r": "SUBCLASS" + }, + "Leiosporocerotaceae": { + "p": "Leiosporocerotales", + "c": [ + "Leiosporoceros" + ], + "n": "", + "r": "FAMILY" + }, + "Monactinus": { + "p": "Hydrodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chromochloris": { + "p": "Chromochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oocystis": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planktosphaeria": { + "p": "Schizochlamydaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Koshicola": { + "p": "Chaetopeltidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranochaete": { + "p": "Chaetopeltidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyochloris": { + "p": "Dictyochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Droopiella": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Granulocystis": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrachlorella": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudomuriella": { + "p": "Pseudomuriellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cosmarium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uronema": { + "p": "Uronemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaeroplea": { + "p": "Sphaeropleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sorastrum": { + "p": "Hydrodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesotaenium": { + "p": "Mesotaeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oedipodiales": { + "p": "Oedipodiopsida", + "c": [ + "Oedipodiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Tetraedron": { + "p": "Sphaeropleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Timmiidae": { + "p": "Bryopsida", + "c": [ + "Timmiales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Granulocystopsis": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ancylonema": { + "p": "Mesotaeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calobryales": { + "p": "Haplomitriidae", + "c": [ + "Haplomitriaceae" + ], + "n": "", + "r": "ORDER" + }, + "pleurocarpids": { + "p": "Bryopsida", + "c": [ + "core pleurocarps" + ], + "n": "", + "r": "CLADE" + }, + "Actinotaenium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arthrodesmus": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lacunastrum": { + "p": "Hydrodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptodesmus": { + "p": "Sphaeropleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parapediastrum": { + "p": "Hydrodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roya": { + "p": "Mesotaeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neochloris": { + "p": "Neochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudopediastrum": { + "p": "Hydrodictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radiofilum": { + "p": "Sphaeropleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echinosphaeridium": { + "p": "Neochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Botryosphaerella": { + "p": "Neochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fritschiella": { + "p": "Fritschiellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lagerheimia": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ankyra": { + "p": "Sphaeropleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bracteamorpha": { + "p": "Bracteamorphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyedriopsis": { + "p": "Neochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphikrikos": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ascochloris": { + "p": "Neochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cylindrocapsa": { + "p": "Cylindrocapsaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gormaniella": { + "p": "Chaetopeltidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fusola": { + "p": "Cylindrocapsaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Willea": { + "p": "Makinoelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reticulocystis": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ecballocystis": { + "p": "Makinoelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Penium": { + "p": "Peniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tortitaenia": { + "p": "Mesotaeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diphysciidae": { + "p": "Bryopsida", + "c": [ + "Diphysciales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Elongatocystis": { + "p": "Makinoelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oocystidium": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oocystella": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caespitella": { + "p": "Aphanochaetaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Densicystis": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudulvella": { + "p": "Chaetopeltidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cosmocladium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetopeltis": { + "p": "Chaetopeltidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quadricoccus": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siderocystopsis": { + "p": "Oocystoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyococcus": { + "p": "Dictyococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rotundella": { + "p": "Rotundellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hormotilopsis": { + "p": "Chaetopeltidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oedocladium": { + "p": "Oedogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jaagiella": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spondylosium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichotomosiphon": { + "p": "Dichotomosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetraphidales": { + "p": "Tetraphidopsida", + "c": [ + "Tetraphidaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chlorogonium": { + "p": "Haematococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dilabifilum": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Temnogametum": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyalotheca": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stephanosphaera": { + "p": "Haematococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesangiospermae": { + "p": "Magnoliopsida", + "c": [ + "Buxales", + "Ceratophyllales", + "Chloranthales", + "eudicotyledons", + "Magnoliidae", + "Liliopsida", + "Proteales", + "Ranunculales", + "Trochodendrales" + ], + "n": "", + "r": "CLADE" + }, + "Zygnemopsis": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thymelaceae": { + "p": "Magnoliopsida", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gongrosira": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlamydocapsa": { + "p": "Palmellopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Draparnaldia": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amborellales": { + "p": "Magnoliopsida", + "c": [ + "Amborellaceae" + ], + "n": "", + "r": "ORDER" + }, + "Hyalogonium": { + "p": "Haematococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrobaileyales": { + "p": "Magnoliopsida", + "c": [ + "Austrobaileyaceae", + "Schisandraceae", + "Trimeniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pinopsida": { + "p": "Acrogymnospermae", + "c": [ + "Pinidae" + ], + "n": "", + "r": "CLASS" + }, + "Cycadopsida": { + "p": "Acrogymnospermae", + "c": [ + "Cycadidae" + ], + "n": "cycads", + "r": "CLASS" + }, + "Mychonastes": { + "p": "Mychonastaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorochytrium": { + "p": "Chlorochytriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mougeotiopsis": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triploceras": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asterococcus": { + "p": "Palmellopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haematococcus": { + "p": "Haematococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Netrium": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micrasterias": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sirogonium": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Groenbladia": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurotaenium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Teilingia": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caulerpa": { + "p": "Caulerpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zygogonium": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Draparnaldioides": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desmidium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nymphaeales": { + "p": "Magnoliopsida", + "c": [ + "Hydatellaceae", + "Nymphaeaceae", + "Cabombaceae" + ], + "n": "", + "r": "ORDER" + }, + "Rusalka": { + "p": "Haematococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euastrum": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dunaliella": { + "p": "Dunaliellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mougeotia": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetophora": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteromonas": { + "p": "Phacotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asteromonas": { + "p": "Asteromonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloeococcus": { + "p": "Palmellopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalomonas": { + "p": "Phacotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triplastrum": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heimansia": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplotaenium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudomicrasterias": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Avrainvillea": { + "p": "Dichotomosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetmemorus": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oocardium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurococcus": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spirogyra": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladocephalus": { + "p": "Dichotomosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planotaenium": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stigeoclonium": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gnetophyta": { + "p": "Acrogymnospermae", + "c": [], + "n": "", + "r": "CLADE" + }, + "Polytrichales": { + "p": "Polytrichopsida", + "c": [ + "Polytrichaceae" + ], + "n": "", + "r": "ORDER" + }, + "Halochlorella": { + "p": "Asteromonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Docidium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uvulifera": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetophoropsis": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hormotila": { + "p": "Chaetophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Entransia": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phymatodocis": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerozosma": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Staurodesmus": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balticola": { + "p": "Haematococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Onychonema": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gnetopsida": { + "p": "Acrogymnospermae", + "c": [ + "Gnetidae" + ], + "n": "", + "r": "CLASS" + }, + "Zygnema": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ginkgophyta": { + "p": "Acrogymnospermae", + "c": [], + "n": "", + "r": "CLADE" + }, + "Phacotus": { + "p": "Phacotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hafniomonas": { + "p": "Dunaliellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coniferophyta": { + "p": "Acrogymnospermae", + "c": [], + "n": "conifers", + "r": "CLADE" + }, + "Staurastrum": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dysmorphococcus": { + "p": "Phacotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wislouchiella": { + "p": "Phacotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ginkgoopsida": { + "p": "Acrogymnospermae", + "c": [ + "Ginkgoidae" + ], + "n": "", + "r": "CLASS" + }, + "Astrephomene": { + "p": "Astrephomenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gungnir": { + "p": "Haematococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caulerpella": { + "p": "Caulerpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nucleotaenium": { + "p": "Zygnemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthidium": { + "p": "Desmidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spermatozopsis": { + "p": "Dunaliellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cycadophyta": { + "p": "Acrogymnospermae", + "c": [], + "n": "cycads", + "r": "CLADE" + }, + "Tetracystis": { + "p": "Tetracystaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurastrum": { + "p": "Pleurastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterotetracystis": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tabris": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Volvox": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pandorina": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fasciculochloris": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radiosphaera": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemiflagellochloris": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrochloris": { + "p": "Actinochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eudorina": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Characium": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrocytium": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spongiococcum": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Yamagishiella": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Axilococcus": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platydorina": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleodorina": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorococcum": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cystomonas": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Basichlamys": { + "p": "Tetrabaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrabaena": { + "p": "Tetrabaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lobomonas": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Volvulina": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Axilosphaera": { + "p": "Tetracystaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gonium": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerocystis": { + "p": "Sphaerocystidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deasonia": { + "p": "Actinochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colemanosphaera": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nautococcus": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Golenkinia": { + "p": "Golenkiniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hapalochloris": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinochloris": { + "p": "Actinochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neospongiococcum": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Borodinellopsis": { + "p": "Chlorococcaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hamakko": { + "p": "Volvocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monosoleniaceae": { + "p": "Marchantiales", + "c": [ + "Monosolenium" + ], + "n": "", + "r": "FAMILY" + }, + "Marchantiaceae": { + "p": "Marchantiales", + "c": [ + "Bucegia", + "Marchantia", + "Preissia" + ], + "n": "", + "r": "FAMILY" + }, + "Jubulineae": { + "p": "Porellales", + "c": [ + "Frullaniaceae", + "Jubulaceae", + "Lejeuneaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Vitreochlamys": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ricciaceae": { + "p": "Marchantiales", + "c": [ + "Riccia", + "Ricciocarpos" + ], + "n": "", + "r": "FAMILY" + }, + "Chlamydomonas": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphagnaceae": { + "p": "Sphagnales", + "c": [ + "Sphagnum" + ], + "n": "", + "r": "FAMILY" + }, + "Marattiales": { + "p": "Marattiidae", + "c": [ + "Marattiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Lunulariaceae": { + "p": "Lunulariales", + "c": [ + "Lunularia" + ], + "n": "", + "r": "FAMILY" + }, + "Blasiaceae": { + "p": "Blasiales", + "c": [ + "Blasia", + "Cavicularia" + ], + "n": "", + "r": "FAMILY" + }, + "Cyathodiaceae": { + "p": "Marchantiales", + "c": [ + "Cyathodium" + ], + "n": "", + "r": "FAMILY" + }, + "Cleveaceae": { + "p": "Marchantiales", + "c": [ + "Athalamia", + "Clevea", + "Peltolepis", + "Sauteria" + ], + "n": "", + "r": "FAMILY" + }, + "Equisetales": { + "p": "Equisetidae", + "c": [ + "Equisetaceae" + ], + "n": "horsetails", + "r": "ORDER" + }, + "Dendrocerotaceae": { + "p": "Dendrocerotales", + "c": [ + "Dendrocerotoideae", + "Phaeomegacerotoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Microglena": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dumortieraceae": { + "p": "Marchantiales", + "c": [ + "Dumortiera" + ], + "n": "", + "r": "FAMILY" + }, + "Lobocharacium": { + "p": "Characiosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Characiochloris": { + "p": "Characiochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocarteria": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carteria": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenophyllales": { + "p": "Polypodiidae", + "c": [ + "Hymenophyllaceae" + ], + "n": "", + "r": "ORDER" + }, + "Halosarcinochlamys": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ostravamonas": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salviniales": { + "p": "Polypodiidae", + "c": [ + "Marsileaceae", + "Salviniaceae" + ], + "n": "water-ferns", + "r": "ORDER" + }, + "Pascherina": { + "p": "Spondylomoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conocephalaceae": { + "p": "Marchantiales", + "c": [ + "Conocephalum" + ], + "n": "", + "r": "FAMILY" + }, + "Cyatheales": { + "p": "Polypodiidae", + "c": [ + "Cibotiaceae", + "Culcitaceae", + "Cyatheaceae", + "Dicksoniaceae", + "Loxsomataceae", + "Metaxyaceae", + "Plagiogyriaceae", + "Thyrsopteridaceae" + ], + "n": "", + "r": "ORDER" + }, + "Neotrichocoleaceae": { + "p": "Ptilidiales", + "c": [ + "Neotrichocolea", + "Trichocoleopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Hyalomonas": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isoetes": { + "p": "Isoetaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oophila": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxymitraceae": { + "p": "Marchantiales", + "c": [ + "Oxymitra" + ], + "n": "", + "r": "FAMILY" + }, + "Scotiella": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aytoniaceae": { + "p": "Marchantiales", + "c": [ + "Asterella", + "Cryptomitrium", + "Mannia", + "Plagiochasma", + "Reboulia" + ], + "n": "", + "r": "FAMILY" + }, + "Polytoma": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polytomella": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riellaceae": { + "p": "Sphaerocarpales", + "c": [ + "Austroriella", + "Riella" + ], + "n": "", + "r": "FAMILY" + }, + "Schizaeales": { + "p": "Polypodiidae", + "c": [ + "Anemiaceae", + "Lygodiaceae", + "Schizaeaceae" + ], + "n": "", + "r": "ORDER" + }, + "Sanguina": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ambuchananiaceae": { + "p": "Sphagnales", + "c": [ + "Ambuchanania", + "Eosphagnum" + ], + "n": "", + "r": "FAMILY" + }, + "Monocarpaceae": { + "p": "Sphaerocarpales", + "c": [ + "Monocarpus" + ], + "n": "", + "r": "FAMILY" + }, + "Takakiaceae": { + "p": "Takakiales", + "c": [ + "Takakia" + ], + "n": "", + "r": "FAMILY" + }, + "Neohodgsoniaceae": { + "p": "Neohodgsoniales", + "c": [ + "Neohodgsonia" + ], + "n": "", + "r": "FAMILY" + }, + "Chlamydopodium": { + "p": "Characiochloridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterochlamydomonas": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dangeardinia": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monocleaceae": { + "p": "Marchantiales", + "c": [ + "Monoclea" + ], + "n": "", + "r": "FAMILY" + }, + "Herzogianthaceae": { + "p": "Ptilidiales", + "c": [ + "Herzogianthus" + ], + "n": "", + "r": "FAMILY" + }, + "Osmundales": { + "p": "Polypodiidae", + "c": [ + "Osmundaceae" + ], + "n": "", + "r": "ORDER" + }, + "Oogamochlamys": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polypodiales": { + "p": "Polypodiidae", + "c": [ + "Aspleniineae", + "Cheiropleuriaceae", + "Dennstaedtiineae", + "Hymenophyllopsidaceae", + "Lindsaeineae", + "Lophosoriaceae", + "Polypodiineae", + "Pteridineae", + "Saccolomatineae" + ], + "n": "", + "r": "ORDER" + }, + "Characiosiphon": { + "p": "Characiosiphonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ophioglossales": { + "p": "Ophioglossidae", + "c": [ + "Ophioglossaceae" + ], + "n": "", + "r": "ORDER" + }, + "Targioniaceae": { + "p": "Marchantiales", + "c": [ + "Targionia" + ], + "n": "", + "r": "FAMILY" + }, + "Phymatocerotaceae": { + "p": "Phymatocerotales", + "c": [ + "Phymatoceros" + ], + "n": "", + "r": "FAMILY" + }, + "Porellineae": { + "p": "Porellales", + "c": [ + "Goebeliellaceae", + "Lepidolaenaceae", + "Porellaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Flatbergiaceae": { + "p": "Sphagnales", + "c": [ + "Flatbergium" + ], + "n": "", + "r": "FAMILY" + }, + "Radulineae": { + "p": "Porellales", + "c": [ + "Radulaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Corsiniaceae": { + "p": "Marchantiales", + "c": [ + "Corsinia", + "Cronisia" + ], + "n": "", + "r": "FAMILY" + }, + "Psilotales": { + "p": "Ophioglossidae", + "c": [ + "Psilotaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ptilidiaceae": { + "p": "Ptilidiales", + "c": [ + "Ptilidium" + ], + "n": "", + "r": "FAMILY" + }, + "Brachiomonas": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exormothecaceae": { + "p": "Marchantiales", + "c": [ + "Aitchisoniella", + "Exormotheca", + "Stephensoniella" + ], + "n": "", + "r": "FAMILY" + }, + "Gleicheniales": { + "p": "Polypodiidae", + "c": [ + "Dipteridaceae", + "Gleicheniaceae", + "Matoniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Desmotetra": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wiesnerellaceae": { + "p": "Marchantiales", + "c": [ + "Wiesnerella" + ], + "n": "", + "r": "FAMILY" + }, + "Chloromonadinia": { + "p": "Chlamydomonadaceae", + "c": [ + "Chlainomonas", + "Chlorominima", + "Chloromonas", + "Gloeomonas", + "Ixipapillifera", + "Paludistella" + ], + "n": "", + "r": "CLADE" + }, + "Gymnomonas": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrobotrys": { + "p": "Spondylomoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhysamphichloris": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerocarpaceae": { + "p": "Sphaerocarpales", + "c": [ + "Geothallus", + "Sphaerocarpos" + ], + "n": "", + "r": "FAMILY" + }, + "Lobochlamys": { + "p": "Chlamydomonadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pelliaceae": { + "p": "Pelliales", + "c": [ + "Apopellia", + "Pellia" + ], + "n": "", + "r": "FAMILY" + }, + "Fossombroniineae": { + "p": "Fossombroniales", + "c": [ + "Allisoniaceae", + "Fossombroniaceae", + "Petalophyllaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Perssoniellineae": { + "p": "Jungermanniales", + "c": [ + "Perssoniellaceae", + "Schistochilaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Calyculariineae": { + "p": "Fossombroniales", + "c": [ + "Calyculariaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Myliineae": { + "p": "Jungermanniales", + "c": [ + "Myliaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Cephaloziineae": { + "p": "Jungermanniales", + "c": [ + "Adelanthaceae", + "Anastrophyllaceae", + "Cephaloziaceae", + "Cephaloziellaceae", + "Jamesoniellaceae", + "Lophoziaceae", + "Obtusifoliaceae", + "Scapaniaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Lophocoleineae": { + "p": "Jungermanniales", + "c": [ + "Blepharostomataceae", + "Brevianthaceae", + "Grolleaceae", + "Herbertaceae", + "Lepicoleaceae", + "Lepidoziaceae", + "Lophocoleaceae", + "Mastigophoraceae", + "Phycolepidoziaceae", + "Plagiochilaceae", + "Pseudolepicoleaceae", + "Trichocoleaceae", + "Vetaformataceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Mizutaniaceae": { + "p": "Metzgeriales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Phyllothalliineae": { + "p": "Pallaviciniales", + "c": [ + "Phyllothalliaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Jungermanniineae": { + "p": "Jungermanniales", + "c": [ + "Acrobolbaceae", + "Antheliaceae", + "Arnelliaceae", + "Balantiopsidaceae", + "Blepharidophyllaceae", + "Calypogeiaceae", + "Delavayellaceae", + "Endogemmataceae", + "Geocalycaceae", + "Gymnomitriaceae", + "Gyrothyraceae", + "Harpanthaceae", + "Jackiellaceae", + "Jungermanniaceae", + "Notoscyphaceae", + "Saccogynaceae", + "Solenostomataceae", + "Southbyaceae", + "Stephaniellaceae", + "Trichotemnomataceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Aneuraceae": { + "p": "Metzgeriales", + "c": [ + "Afroriccardia", + "Aneura", + "Lobatiriccardia", + "Riccardia", + "Verdoornia" + ], + "n": "", + "r": "FAMILY" + }, + "Notothyladaceae": { + "p": "Notothyladales", + "c": [ + "Hattorioceros", + "Notothylas", + "Paraphymatoceros", + "Phaeoceros" + ], + "n": "", + "r": "FAMILY" + }, + "Lycopodielloideae": { + "p": "Lycopodiaceae", + "c": [ + "Lateristachys", + "Lycopodiella", + "Palhinhaea", + "Pseudolycopodiella" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Noterocladaceae": { + "p": "Pelliales", + "c": [ + "Noteroclada" + ], + "n": "", + "r": "FAMILY" + }, + "Huperzioideae": { + "p": "Lycopodiaceae", + "c": [ + "Huperzia", + "Phlegmariurus", + "Phylloglossum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Andreaeobryaceae": { + "p": "Andreaeobryales", + "c": [ + "Andreaeobryum" + ], + "n": "", + "r": "FAMILY" + }, + "Andreaeaceae": { + "p": "Andreaeales", + "c": [ + "Andreaea" + ], + "n": "", + "r": "FAMILY" + }, + "Anthocerotaceae": { + "p": "Anthocerotales", + "c": [ + "Anthoceros", + "Folioceros", + "Sphaerosporoceros" + ], + "n": "", + "r": "FAMILY" + }, + "Selaginella": { + "p": "Selaginellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lycopodioideae": { + "p": "Lycopodiaceae", + "c": [ + "Austrolycopodium", + "Dendrolycopodium", + "Diphasiastrum", + "Diphasium", + "Lycopodiastrum", + "Lycopodium", + "Pseudodiphasium", + "Spinulum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Metzgeriaceae": { + "p": "Metzgeriales", + "c": [ + "Metzgeria", + "Vandiemenia" + ], + "n": "", + "r": "FAMILY" + }, + "Pallaviciniineae": { + "p": "Pallaviciniales", + "c": [ + "Hymenophytaceae", + "Moerckiaceae", + "Pallaviciniaceae", + "Sandeothallaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Makinoiineae": { + "p": "Fossombroniales", + "c": [ + "Makinoaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Pleuroziaceae": { + "p": "Pleuroziales", + "c": [ + "Pleurozia" + ], + "n": "", + "r": "FAMILY" + }, + "Closterium peracerosum-strigosum-littorale complex": { + "p": "Closterium", + "c": [], + "n": "", + "r": "CLADE" + }, + "Treubiaceae": { + "p": "Treubiales", + "c": [ + "Apotreubia", + "Treubia" + ], + "n": "", + "r": "FAMILY" + }, + "Hypnanae": { + "p": "Bryidae", + "c": [ + "Hookeriales", + "Hypnales", + "Hypnodendrales", + "Ptychomniales" + ], + "n": "", + "r": "SUPERORDER" + }, + "Buxbaumiales": { + "p": "Buxbaumiidae", + "c": [ + "Buxbaumiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Scouleriales": { + "p": "Dicranidae", + "c": [ + "Drummondiaceae", + "Scouleriaceae" + ], + "n": "", + "r": "ORDER" + }, + "Dicranales": { + "p": "Dicranidae", + "c": [ + "Aongstroemiaceae", + "Bruchiaceae", + "Calymperaceae", + "Dicranaceae", + "Dicranellopsidaceae", + "Erpodiaceae", + "Eustichiaceae", + "Fissidentaceae", + "Hypodontiaceae", + "Leucobryaceae", + "Micromitriaceae", + "Rhabdoweisiaceae", + "Rhachitheciaceae", + "Rhizogemmaceae", + "Ruficaulaceae", + "Schistostegaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pseudoditrichales": { + "p": "Dicranidae", + "c": [ + "Ditrichaceae", + "Flexitrichaceae", + "Pseudoditrichaceae", + "Saelaniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pottiales": { + "p": "Dicranidae", + "c": [ + "Mitteniaceae", + "Pleurophascaceae", + "Pottiaceae", + "Serpotortellaceae" + ], + "n": "", + "r": "ORDER" + }, + "Archidiales": { + "p": "Dicranidae", + "c": [ + "Archidiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Funariales": { + "p": "Funariidae", + "c": [ + "Disceliaceae", + "Funariaceae" + ], + "n": "", + "r": "ORDER" + }, + "Gigaspermales": { + "p": "Funariidae", + "c": [ + "Gigaspermaceae" + ], + "n": "", + "r": "ORDER" + }, + "Grimmiales": { + "p": "Dicranidae", + "c": [ + "Grimmiaceae", + "Ptychomitriaceae", + "Seligeriaceae" + ], + "n": "", + "r": "ORDER" + }, + "Bryanae": { + "p": "Bryidae", + "c": [ + "Bartramiales", + "Bryales", + "Hedwigiales", + "Orthotrichales", + "Rhizogoniales", + "Splachnales" + ], + "n": "", + "r": "SUPERORDER" + }, + "Leiosporoceros": { + "p": "Leiosporocerotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Encalyptales": { + "p": "Funariidae", + "c": [ + "Bryobartramiaceae", + "Encalyptaceae" + ], + "n": "", + "r": "ORDER" + }, + "Bryoxiphiales": { + "p": "Dicranidae", + "c": [ + "Bryoxiphiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Haplomitriaceae": { + "p": "Calobryales", + "c": [ + "Haplomitrium" + ], + "n": "", + "r": "FAMILY" + }, + "core pleurocarps": { + "p": "pleurocarpids", + "c": [ + "homocostate pleurocarps" + ], + "n": "", + "r": "CLADE" + }, + "Oedipodiaceae": { + "p": "Oedipodiales", + "c": [ + "Oedipodium" + ], + "n": "", + "r": "FAMILY" + }, + "Timmiales": { + "p": "Timmiidae", + "c": [ + "Timmiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Amborellaceae": { + "p": "Amborellales", + "c": [ + "Amborella" + ], + "n": "", + "r": "FAMILY" + }, + "eudicotyledons": { + "p": "Mesangiospermae", + "c": [ + "Gunneridae" + ], + "n": "eudicots", + "r": "CLADE" + }, + "Magnoliidae": { + "p": "Mesangiospermae", + "c": [ + "Canellales", + "Laurales", + "Magnoliales", + "Piperales" + ], + "n": "", + "r": "CLADE" + }, + "Proteales": { + "p": "Mesangiospermae", + "c": [ + "Nelumbonaceae", + "Platanaceae", + "Proteaceae", + "Sabiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Tetraphidaceae": { + "p": "Tetraphidales", + "c": [ + "Tetraphis", + "Tetrodontium" + ], + "n": "", + "r": "FAMILY" + }, + "Trimeniaceae": { + "p": "Austrobaileyales", + "c": [ + "Trimenia" + ], + "n": "", + "r": "FAMILY" + }, + "Trochodendrales": { + "p": "Mesangiospermae", + "c": [ + "Trochodendraceae" + ], + "n": "", + "r": "ORDER" + }, + "Austrobaileyaceae": { + "p": "Austrobaileyales", + "c": [ + "Austrobaileya" + ], + "n": "", + "r": "FAMILY" + }, + "Diphysciales": { + "p": "Diphysciidae", + "c": [ + "Diphysciaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pinidae": { + "p": "Pinopsida", + "c": [ + "Conifers I", + "Conifers II" + ], + "n": "", + "r": "SUBCLASS" + }, + "Ranunculales": { + "p": "Mesangiospermae", + "c": [ + "Berberidaceae", + "Ranunculaceae", + "Circaeasteraceae", + "Eupteleaceae", + "Lardizabalaceae", + "Menispermaceae", + "Papaveraceae" + ], + "n": "", + "r": "ORDER" + }, + "Liliopsida": { + "p": "Mesangiospermae", + "c": [ + "Acorales", + "Alismatales", + "Petrosaviidae" + ], + "n": "monocots", + "r": "CLADE" + }, + "Schisandraceae": { + "p": "Austrobaileyales", + "c": [ + "Illicium", + "Kadsura", + "Schisandra" + ], + "n": "", + "r": "FAMILY" + }, + "Buxales": { + "p": "Mesangiospermae", + "c": [ + "Buxaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ceratophyllales": { + "p": "Mesangiospermae", + "c": [ + "Ceratophyllaceae" + ], + "n": "", + "r": "ORDER" + }, + "Cycadidae": { + "p": "Cycadopsida", + "c": [ + "Cycadales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Chloranthales": { + "p": "Mesangiospermae", + "c": [ + "Chloranthaceae" + ], + "n": "", + "r": "ORDER" + }, + "Nymphaeaceae": { + "p": "Nymphaeales", + "c": [ + "Barclaya", + "Euryale", + "Nuphar", + "Ondinea", + "Victoria", + "Nymphaea" + ], + "n": "water-lily family", + "r": "FAMILY" + }, + "Cabombaceae": { + "p": "Nymphaeales", + "c": [ + "Brasenia", + "Cabomba" + ], + "n": "water-shield family", + "r": "FAMILY" + }, + "Hydatellaceae": { + "p": "Nymphaeales", + "c": [ + "Trithuria" + ], + "n": "", + "r": "FAMILY" + }, + "Ginkgoidae": { + "p": "Ginkgoopsida", + "c": [ + "Ginkgoales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Polytrichaceae": { + "p": "Polytrichales", + "c": [ + "Alophosia", + "Atrichopsis", + "Atrichum", + "Bartramiopsis", + "Dawsonia", + "Delongia", + "Dendroligotrichum", + "Hebantia", + "Itatiella", + "Lyellia", + "Meiotrichum", + "Notoligotrichum", + "Oligotrichum", + "Pogonatum", + "Polytrichadelphus", + "Polytrichastrum", + "Polytrichum", + "Psilopilum", + "Steereobryon" + ], + "n": "", + "r": "FAMILY" + }, + "Gnetidae": { + "p": "Gnetopsida", + "c": [ + "Ephedrales", + "Gnetales", + "Welwitschiales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Frullaniaceae": { + "p": "Jubulineae", + "c": [ + "Frullania" + ], + "n": "", + "r": "FAMILY" + }, + "Lejeuneaceae": { + "p": "Jubulineae", + "c": [ + "Lejeuneoideae", + "Ptychanthoideae", + "Sphaerolejeunea" + ], + "n": "", + "r": "FAMILY" + }, + "Ricciocarpos": { + "p": "Ricciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marchantia": { + "p": "Marchantiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monosolenium": { + "p": "Monosoleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jubulaceae": { + "p": "Jubulineae", + "c": [ + "Jubula", + "Neohattoria", + "Nipponolejeunea" + ], + "n": "", + "r": "FAMILY" + }, + "Riccia": { + "p": "Ricciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bucegia": { + "p": "Marchantiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Preissia": { + "p": "Marchantiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cavicularia": { + "p": "Blasiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichocoleopsis": { + "p": "Neotrichocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metaxyaceae": { + "p": "Cyatheales", + "c": [ + "Metaxya" + ], + "n": "", + "r": "FAMILY" + }, + "Cibotiaceae": { + "p": "Cyatheales", + "c": [ + "Cibotium" + ], + "n": "", + "r": "FAMILY" + }, + "Dicksoniaceae": { + "p": "Cyatheales", + "c": [ + "Calochlaena", + "Dicksonia", + "Lophosoria" + ], + "n": "", + "r": "FAMILY" + }, + "Dumortiera": { + "p": "Dumortieraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Culcitaceae": { + "p": "Cyatheales", + "c": [ + "Culcita" + ], + "n": "", + "r": "FAMILY" + }, + "Dendrocerotoideae": { + "p": "Dendrocerotaceae", + "c": [ + "Dendroceros", + "Megaceros", + "Nothoceros" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Lunularia": { + "p": "Lunulariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peltolepis": { + "p": "Cleveaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sauteria": { + "p": "Cleveaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyatheaceae": { + "p": "Cyatheales", + "c": [ + "Alsophila", + "Cyathea", + "Gymnosphaera", + "Sphaeropteris" + ], + "n": "", + "r": "FAMILY" + }, + "Salviniaceae": { + "p": "Salviniales", + "c": [ + "Azolla", + "Salvinia" + ], + "n": "", + "r": "FAMILY" + }, + "Clevea": { + "p": "Cleveaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loxsomataceae": { + "p": "Cyatheales", + "c": [ + "Loxsoma", + "Loxsomopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Marattiaceae": { + "p": "Marattiales", + "c": [ + "Angiopteris", + "Christensenia", + "Danaea", + "Eupodium", + "Marattia", + "Ptisana" + ], + "n": "", + "r": "FAMILY" + }, + "Marsileaceae": { + "p": "Salviniales", + "c": [ + "Pilularia", + "Regnellidium", + "Marsilea" + ], + "n": "", + "r": "FAMILY" + }, + "Neotrichocolea": { + "p": "Neotrichocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blasia": { + "p": "Blasiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiogyriaceae": { + "p": "Cyatheales", + "c": [ + "Plagiogyria" + ], + "n": "", + "r": "FAMILY" + }, + "Phaeomegacerotoideae": { + "p": "Dendrocerotaceae", + "c": [ + "Phaeomegaceros" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Sphagnum": { + "p": "Sphagnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conocephalum": { + "p": "Conocephalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Equisetaceae": { + "p": "Equisetales", + "c": [ + "Equisetum" + ], + "n": "", + "r": "FAMILY" + }, + "Thyrsopteridaceae": { + "p": "Cyatheales", + "c": [ + "Thyrsopteris" + ], + "n": "", + "r": "FAMILY" + }, + "Hymenophyllaceae": { + "p": "Hymenophyllales", + "c": [ + "Hymenophylloideae", + "Trichomanoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Cyathodium": { + "p": "Cyathodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Athalamia": { + "p": "Cleveaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloeomonas": { + "p": "Chloromonadinia", + "c": [], + "n": "", + "r": "GENUS" + }, + "Targionia": { + "p": "Targioniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anemiaceae": { + "p": "Schizaeales", + "c": [ + "Anemia" + ], + "n": "", + "r": "FAMILY" + }, + "Lophosoriaceae": { + "p": "Polypodiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Asterella": { + "p": "Aytoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riella": { + "p": "Riellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osmundaceae": { + "p": "Osmundales", + "c": [ + "Claytosmunda", + "Leptopteris", + "Osmunda", + "Osmundastrum", + "Plenasium", + "Plenasium x Osmunda", + "Todea" + ], + "n": "", + "r": "FAMILY" + }, + "Pteridineae": { + "p": "Polypodiales", + "c": [ + "Pteridaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Eosphagnum": { + "p": "Ambuchananiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psilotaceae": { + "p": "Psilotales", + "c": [ + "Tmesipteris", + "Psilotum" + ], + "n": "whisk-fern family", + "r": "FAMILY" + }, + "Cryptomitrium": { + "p": "Aytoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phymatoceros": { + "p": "Phymatocerotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cronisia": { + "p": "Corsiniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goebeliellaceae": { + "p": "Porellineae", + "c": [ + "Goebeliella" + ], + "n": "", + "r": "FAMILY" + }, + "Polypodiineae": { + "p": "Polypodiales", + "c": [ + "Davalliaceae", + "Didymochlaenaceae", + "Dryopteridaceae", + "Grammitidaceae", + "Hypodematiaceae", + "Lomariopsidaceae", + "Nephrolepidaceae", + "Oleandraceae", + "Polypodiaceae", + "Pteridryaceae", + "Tectariaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Cheiropleuriaceae": { + "p": "Polypodiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Matoniaceae": { + "p": "Gleicheniales", + "c": [ + "Matonia", + "Phanerosorus" + ], + "n": "", + "r": "FAMILY" + }, + "Reboulia": { + "p": "Aytoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizaeaceae": { + "p": "Schizaeales", + "c": [ + "Actinostachys", + "Microschizaea", + "Schizaea" + ], + "n": "", + "r": "FAMILY" + }, + "Exormotheca": { + "p": "Exormothecaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aitchisoniella": { + "p": "Exormothecaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipteridaceae": { + "p": "Gleicheniales", + "c": [ + "Cheiropleuria", + "Dipteris" + ], + "n": "", + "r": "FAMILY" + }, + "Lygodiaceae": { + "p": "Schizaeales", + "c": [ + "Lygodium" + ], + "n": "", + "r": "FAMILY" + }, + "Chloromonas": { + "p": "Chloromonadinia", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porellaceae": { + "p": "Porellineae", + "c": [ + "Ascidiota", + "Macvicaria", + "Porella" + ], + "n": "", + "r": "FAMILY" + }, + "Dennstaedtiineae": { + "p": "Polypodiales", + "c": [ + "Dennstaedtiaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Ambuchanania": { + "p": "Ambuchananiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiochasma": { + "p": "Aytoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herzogianthus": { + "p": "Herzogianthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorominima": { + "p": "Chloromonadinia", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aspleniineae": { + "p": "Polypodiales", + "c": [ + "Aspleniaceae", + "Athyriaceae", + "Blechnaceae", + "Cystopteridaceae", + "Desmophlebiaceae", + "Diplaziopsidaceae", + "Hemidictyaceae", + "Onocleaceae", + "Rhachidosoraceae", + "Thelypteridaceae", + "Woodsiaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Ptilidium": { + "p": "Ptilidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monoclea": { + "p": "Monocleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlainomonas": { + "p": "Chloromonadinia", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neohodgsonia": { + "p": "Neohodgsoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corsinia": { + "p": "Corsiniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austroriella": { + "p": "Riellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stephensoniella": { + "p": "Exormothecaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monocarpus": { + "p": "Monocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenophyllopsidaceae": { + "p": "Polypodiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Wiesnerella": { + "p": "Wiesnerellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flatbergium": { + "p": "Flatbergiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Takakia": { + "p": "Takakiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radulaceae": { + "p": "Radulineae", + "c": [ + "Radula" + ], + "n": "", + "r": "FAMILY" + }, + "Lindsaeineae": { + "p": "Polypodiales", + "c": [ + "Cystodiaceae", + "Lindsaeaceae", + "Lonchitidaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Ophioglossaceae": { + "p": "Ophioglossales", + "c": [ + "Botrychioideae", + "Helminthostachyoideae", + "Mankyuoideae", + "Ophioglossoideae" + ], + "n": "adder's-tongue fern family", + "r": "FAMILY" + }, + "Mannia": { + "p": "Aytoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saccolomatineae": { + "p": "Polypodiales", + "c": [ + "Saccolomataceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Oxymitra": { + "p": "Oxymitraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidolaenaceae": { + "p": "Porellineae", + "c": [ + "Gackstroemia", + "Jubulopsis", + "Lepidogyna", + "Lepidolaena" + ], + "n": "", + "r": "FAMILY" + }, + "Gleicheniaceae": { + "p": "Gleicheniales", + "c": [ + "Dicranopteris", + "Diplopterygium", + "Gleichenella", + "Gleichenia", + "Rouxopteris", + "Sticherus", + "Stromatopteris" + ], + "n": "", + "r": "FAMILY" + }, + "Lateristachys": { + "p": "Lycopodielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnomitriaceae": { + "p": "Jungermanniineae", + "c": [ + "Acrolophozia", + "Apomarsupella", + "Gymnomitrion", + "Marsupella", + "Nanomarsupella", + "Nardia", + "Paramomitrion", + "Poeltia", + "Prasanthus" + ], + "n": "", + "r": "FAMILY" + }, + "Gyrothyraceae": { + "p": "Jungermanniineae", + "c": [ + "Gyrothyra" + ], + "n": "", + "r": "FAMILY" + }, + "Endogemmataceae": { + "p": "Jungermanniineae", + "c": [ + "Endogemma" + ], + "n": "", + "r": "FAMILY" + }, + "Acrobolbaceae": { + "p": "Jungermanniineae", + "c": [ + "Acrobolbus", + "Austrolophozia", + "Conoscyphus", + "Enigmella", + "Goebelobryum", + "Lethocolea", + "Marsupidium", + "Saccogynidium", + "Tylimanthus" + ], + "n": "", + "r": "FAMILY" + }, + "Adelanthaceae": { + "p": "Cephaloziineae", + "c": [ + "Adelanthoideae", + "Jamesonielloideae" + ], + "n": "", + "r": "FAMILY" + }, + "Fossombroniaceae": { + "p": "Fossombroniineae", + "c": [ + "Austrofossombronia", + "Fossombronia" + ], + "n": "", + "r": "FAMILY" + }, + "Folioceros": { + "p": "Anthocerotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiochilaceae": { + "p": "Lophocoleineae", + "c": [ + "Acrochila", + "Chiastocaulon", + "Cryptoplagiochila", + "Dinckleria", + "Pedinophyllopsis", + "Pedinophyllum", + "Plagiochila", + "Plagiochilidium", + "Plagiochilion", + "Pseudolophocolea" + ], + "n": "", + "r": "FAMILY" + }, + "Vetaformataceae": { + "p": "Lophocoleineae", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Saccogynaceae": { + "p": "Jungermanniineae", + "c": [ + "Saccogyna" + ], + "n": "", + "r": "FAMILY" + }, + "Notothylas": { + "p": "Notothyladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerocarpos": { + "p": "Sphaerocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephaloziaceae": { + "p": "Cephaloziineae", + "c": [ + "Alobiella", + "Alobiellopsis", + "Anomoclada", + "Cephalozia", + "Cladopodiella", + "Fuscocephaloziopsis", + "Haesselia", + "Iwatsukia", + "Metahygrobiella", + "Nowellia", + "Odontoschisma", + "Pleurocladula", + "Schiffneria", + "Schofieldia", + "Trabacellula" + ], + "n": "", + "r": "FAMILY" + }, + "Lophoziaceae": { + "p": "Cephaloziineae", + "c": [ + "Andrewsianthus", + "Gerhildiella", + "Heterogemma", + "Lophozia", + "Lophoziopsis", + "Pseudocephaloziella", + "Pseudolophozia", + "Trilophozia", + "Tritomaria" + ], + "n": "", + "r": "FAMILY" + }, + "Pseudolycopodiella": { + "p": "Lycopodielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lobatiriccardia": { + "p": "Aneuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scapaniaceae": { + "p": "Cephaloziineae", + "c": [ + "Diplophyllum", + "Douinia", + "Macrodiplophyllum", + "Pseudotritomaria", + "Saccobasis", + "Scapania", + "Schistochilopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Lepicoleaceae": { + "p": "Lophocoleineae", + "c": [ + "Lepicolea", + "Vetaforma" + ], + "n": "", + "r": "FAMILY" + }, + "Sphaerosporoceros": { + "p": "Anthocerotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perssoniellaceae": { + "p": "Perssoniellineae", + "c": [ + "Perssoniella" + ], + "n": "", + "r": "FAMILY" + }, + "Solenostomataceae": { + "p": "Jungermanniineae", + "c": [ + "Aponardia", + "Arctoscyphus", + "Cryptocolea", + "Cryptocoleopsis", + "Diplocolea", + "Horikawaella", + "Metasolenostoma", + "Plectocolea", + "Protosolenostoma", + "Scaphophyllum", + "Solenostoma" + ], + "n": "", + "r": "FAMILY" + }, + "Trichocoleaceae": { + "p": "Lophocoleineae", + "c": [ + "Eotrichocolea", + "Leiomitra", + "Trichocolea" + ], + "n": "", + "r": "FAMILY" + }, + "Anastrophyllaceae": { + "p": "Cephaloziineae", + "c": [ + "Anastrepta", + "Anastrophyllum", + "Barbilophozia", + "Biantheridion", + "Chandonanthus", + "Crossocalyx", + "Gymnocolea", + "Hamatostrepta", + "Hattoria", + "Isopaches", + "Neoorthocaulis", + "Orthocaulis", + "Plicanthus", + "Schizophyllopsis", + "Schljakovia", + "Schljakovianthus", + "Sphenolobopsis", + "Sphenolobus", + "Tetralophozia", + "Vietnamiella", + "Zantenia" + ], + "n": "", + "r": "FAMILY" + }, + "Delavayellaceae": { + "p": "Jungermanniineae", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Andreaea": { + "p": "Andreaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophocoleaceae": { + "p": "Lophocoleineae", + "c": [ + "Amphilophocolea", + "Bragginsella", + "Chiloscyphus", + "Clasmatocolea", + "Cryptolophocolea", + "Cyanolophocolea", + "Evansianthus", + "Hepatostolonophora", + "Heteroscyphus", + "Lamellocolea", + "Leptophyllopsis", + "Leptoscyphus", + "Lophocolea", + "Otoscyphus", + "Pachyglossa", + "Perdusenia", + "Physotheca", + "Pigafettoa" + ], + "n": "", + "r": "FAMILY" + }, + "Jungermanniaceae": { + "p": "Jungermanniineae", + "c": [ + "Cryptochila", + "Delavayella", + "Eremonotus", + "Hattoriella", + "Jungermannia", + "Leiocolea", + "Liochlaena", + "Mesoptychia", + "Rivulariella", + "Xenochila" + ], + "n": "", + "r": "FAMILY" + }, + "Riccardia": { + "p": "Aneuraceae", + "c": [ + "Riccardia subgen. Arceoneura", + "Riccardia subgen. Corioneura", + "Riccardia subgen. Hyaloneura", + "Riccardia subgen. Lophoneura", + "Riccardia subgen. Neoneura", + "Riccardia subgen. Phycaneura", + "Riccardia subgen. Riccardia", + "Riccardia subgen. Spinella", + "Riccardia subgen. Thornoneura", + "Riccardia subgen. Trichothallia" + ], + "n": "", + "r": "GENUS" + }, + "Ixipapillifera": { + "p": "Chloromonadinia", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herbertaceae": { + "p": "Lophocoleineae", + "c": [ + "Herbertus", + "Triandrophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Jackiellaceae": { + "p": "Jungermanniineae", + "c": [ + "Jackiella" + ], + "n": "", + "r": "FAMILY" + }, + "Blepharostomataceae": { + "p": "Lophocoleineae", + "c": [ + "Blepharostoma" + ], + "n": "", + "r": "FAMILY" + }, + "Phaeoceros": { + "p": "Notothyladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antheliaceae": { + "p": "Jungermanniineae", + "c": [ + "Anthelia", + "Hygrobiella", + "Lophochaete" + ], + "n": "", + "r": "FAMILY" + }, + "Anthoceros": { + "p": "Anthocerotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Huperzia": { + "p": "Huperzioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Verdoornia": { + "p": "Aneuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andreaeobryum": { + "p": "Andreaeobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jamesoniellaceae": { + "p": "Cephaloziineae", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Cephaloziellaceae": { + "p": "Cephaloziineae", + "c": [ + "Allisoniella", + "Amphicephalozia", + "Anastrophyllopsis", + "Cephalojonesia", + "Cephalomitrion", + "Cephaloziella", + "Cephaloziopsis", + "Chaetophyllopsis", + "Chonecolea", + "Cylindrocolea", + "Gottschelia", + "Gymnocoleopsis", + "Herzogobryum", + "Kymatocalyx", + "Lophonardia", + "Nothogymnomitrion", + "Oleolophozia", + "Phycolepidozia", + "Protolophozia" + ], + "n": "", + "r": "FAMILY" + }, + "Obtusifoliaceae": { + "p": "Cephaloziineae", + "c": [ + "Konstantinovia", + "Obtusifolium" + ], + "n": "", + "r": "FAMILY" + }, + "Geocalycaceae": { + "p": "Jungermanniineae", + "c": [ + "Geocalyx" + ], + "n": "", + "r": "FAMILY" + }, + "Afroriccardia": { + "p": "Aneuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paludistella": { + "p": "Chloromonadinia", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arnelliaceae": { + "p": "Jungermanniineae", + "c": [ + "Arnellia" + ], + "n": "", + "r": "FAMILY" + }, + "Noteroclada": { + "p": "Noterocladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blepharidophyllaceae": { + "p": "Jungermanniineae", + "c": [ + "Blepharidophyllum", + "Clandarium" + ], + "n": "", + "r": "FAMILY" + }, + "Trichotemnomataceae": { + "p": "Jungermanniineae", + "c": [ + "Trichotemnoma" + ], + "n": "", + "r": "FAMILY" + }, + "Pseudolepicoleaceae": { + "p": "Lophocoleineae", + "c": [ + "Archeophylla", + "Castanoclobos", + "Chaetocolea", + "Herzogiaria", + "Isophyllaria", + "Pseudolepicolea", + "Temnoma" + ], + "n": "", + "r": "FAMILY" + }, + "Notoscyphaceae": { + "p": "Jungermanniineae", + "c": [ + "Notoscyphus" + ], + "n": "", + "r": "FAMILY" + }, + "Mastigophoraceae": { + "p": "Lophocoleineae", + "c": [ + "Dendromastigophora", + "Mastigophora" + ], + "n": "", + "r": "FAMILY" + }, + "Balantiopsidaceae": { + "p": "Jungermanniineae", + "c": [ + "Acroscyphella", + "Anisotachis", + "Balantiopsis", + "Isotachis", + "Neesioscyphus", + "Pseudoisotachis", + "Ruizanthus" + ], + "n": "", + "r": "FAMILY" + }, + "Petalophyllaceae": { + "p": "Fossombroniineae", + "c": [ + "Petalophyllum", + "Sewardiella" + ], + "n": "", + "r": "FAMILY" + }, + "Apopellia": { + "p": "Pelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phycolepidoziaceae": { + "p": "Lophocoleineae", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Myliaceae": { + "p": "Myliineae", + "c": [ + "Leiomylia", + "Mylia" + ], + "n": "", + "r": "FAMILY" + }, + "Hattorioceros": { + "p": "Notothyladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllothalliaceae": { + "p": "Phyllothalliineae", + "c": [ + "Phyllothallia" + ], + "n": "", + "r": "FAMILY" + }, + "Phlegmariurus": { + "p": "Huperzioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phylloglossum": { + "p": "Huperzioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Southbyaceae": { + "p": "Jungermanniineae", + "c": [ + "Gongylanthus", + "Southbya" + ], + "n": "", + "r": "FAMILY" + }, + "Calypogeiaceae": { + "p": "Jungermanniineae", + "c": [ + "Calypogeia", + "Eocalypogeia", + "Metacalypogeia", + "Mizutania", + "Mnioloma" + ], + "n": "", + "r": "FAMILY" + }, + "Grolleaceae": { + "p": "Lophocoleineae", + "c": [ + "Grollea" + ], + "n": "", + "r": "FAMILY" + }, + "Geothallus": { + "p": "Sphaerocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pellia": { + "p": "Pelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidoziaceae": { + "p": "Lophocoleineae", + "c": [ + "Bazzanioideae", + "Drucelloideae", + "Lembidioideae", + "Lepidozioideae", + "Micropterygioideae", + "Protocephalozioideae", + "Zoopsidoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Schistochilaceae": { + "p": "Perssoniellineae", + "c": [ + "Gottschea", + "Pachyschistochila", + "Paraschistochila", + "Pleurocladopsis", + "Schistochila" + ], + "n": "", + "r": "FAMILY" + }, + "Stephaniellaceae": { + "p": "Jungermanniineae", + "c": [ + "Stephaniella", + "Stephaniellidium" + ], + "n": "", + "r": "FAMILY" + }, + "Aneura": { + "p": "Aneuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyculariaceae": { + "p": "Calyculariineae", + "c": [ + "Calycularia" + ], + "n": "", + "r": "FAMILY" + }, + "Lycopodiella": { + "p": "Lycopodielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harpanthaceae": { + "p": "Jungermanniineae", + "c": [ + "Harpanthus", + "Protoharpanthus" + ], + "n": "", + "r": "FAMILY" + }, + "Paraphymatoceros": { + "p": "Notothyladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brevianthaceae": { + "p": "Lophocoleineae", + "c": [ + "Brevianthus", + "Tetracymbaliella" + ], + "n": "", + "r": "FAMILY" + }, + "Allisoniaceae": { + "p": "Fossombroniineae", + "c": [ + "Allisonia" + ], + "n": "", + "r": "FAMILY" + }, + "Palhinhaea": { + "p": "Lycopodielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cycadales": { + "p": "Cycadidae", + "c": [ + "Cycadaceae", + "Stangeriaceae", + "Zamiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ditrichaceae": { + "p": "Pseudoditrichales", + "c": [ + "Astomiopsis", + "Bryomanginia", + "Ceratodon", + "Cheilothela", + "Distichium", + "Ditrichopsis", + "Ditrichum", + "Eccremidium", + "Garckea", + "Pleuridium", + "Rhamphidium", + "Trichodon", + "Tristichium", + "Wilsoniella" + ], + "n": "", + "r": "FAMILY" + }, + "Conifers I": { + "p": "Pinidae", + "c": [ + "Pinales" + ], + "n": "", + "r": "CLADE" + }, + "Papaveraceae": { + "p": "Ranunculales", + "c": [ + "Eschscholzioideae", + "Fumarioideae", + "Papaveroideae" + ], + "n": "poppy family", + "r": "FAMILY" + }, + "Dendroligotrichum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hebantia": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vandiemenia": { + "p": "Metzgeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atrichum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lyellia": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buxaceae": { + "p": "Buxales", + "c": [ + "Buxus", + "Didymeles", + "Haptanthus", + "Notobuxus", + "Pachysandra", + "Styloceras", + "Sarcococca" + ], + "n": "boxwood family", + "r": "FAMILY" + }, + "Archidiaceae": { + "p": "Archidiales", + "c": [ + "Archidium" + ], + "n": "", + "r": "FAMILY" + }, + "Mitteniaceae": { + "p": "Pottiales", + "c": [ + "Mittenia" + ], + "n": "", + "r": "FAMILY" + }, + "Apotreubia": { + "p": "Treubiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brasenia": { + "p": "Cabombaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sandeothallaceae": { + "p": "Pallaviciniineae", + "c": [ + "Sandeothallus" + ], + "n": "", + "r": "FAMILY" + }, + "Fissidentaceae": { + "p": "Dicranales", + "c": [ + "Fissidens" + ], + "n": "", + "r": "FAMILY" + }, + "Bryales": { + "p": "Bryanae", + "c": [ + "Bryaceae", + "Catoscopiaceae", + "Leptostomataceae", + "Mniaceae", + "Phyllodrepaniaceae", + "Pulchrinodaceae", + "Roellobryaceae" + ], + "n": "", + "r": "ORDER" + }, + "Diphysciaceae": { + "p": "Diphysciales", + "c": [ + "Diphyscium", + "Muscoflorschuetzia", + "Theriotia" + ], + "n": "", + "r": "FAMILY" + }, + "Menispermaceae": { + "p": "Ranunculales", + "c": [ + "Chasmantheroideae", + "Menispermoideae" + ], + "n": "moonseed family", + "r": "FAMILY" + }, + "Delongia": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saelaniaceae": { + "p": "Pseudoditrichales", + "c": [ + "Saelania" + ], + "n": "", + "r": "FAMILY" + }, + "Welwitschiales": { + "p": "Gnetidae", + "c": [ + "Welwitschiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ceratophyllaceae": { + "p": "Ceratophyllales", + "c": [ + "Ceratophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Polytrichum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conifers II": { + "p": "Pinidae", + "c": [ + "Araucariales", + "Cupressales" + ], + "n": "", + "r": "CLADE" + }, + "Laurales": { + "p": "Magnoliidae", + "c": [ + "Atherospermataceae", + "Calycanthaceae", + "Gomortegaceae", + "Hernandiaceae", + "Lauraceae", + "Monimiaceae", + "Siparunaceae" + ], + "n": "", + "r": "ORDER" + }, + "Cabomba": { + "p": "Cabombaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthotrichales": { + "p": "Bryanae", + "c": [ + "Orthotrichaceae" + ], + "n": "", + "r": "ORDER" + }, + "Lycopodium": { + "p": "Lycopodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diphasium": { + "p": "Lycopodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pallaviciniaceae": { + "p": "Pallaviciniineae", + "c": [ + "Greeneothallus", + "Jensenia", + "Pallavicinia", + "Podomitrium", + "Seppeltia", + "Symphyogyna", + "Symphyogynopsis", + "Xenothallus" + ], + "n": "", + "r": "FAMILY" + }, + "Hookeriales": { + "p": "Hypnanae", + "c": [ + "Daltoniaceae", + "Hookeriaceae", + "Hypopterygiaceae", + "Leucomiaceae", + "Pilotrichaceae", + "Saulomataceae", + "Schimperobryaceae" + ], + "n": "", + "r": "ORDER" + }, + "Frullania": { + "p": "Frullaniaceae", + "c": [ + "Frullania subgen. Chonanthelia", + "Frullania subgen. Diastaloba", + "Frullania subgen. Diversitextae", + "Frullania subgen. Frullania", + "Frullania subgen. Homotropantha", + "Frullania subgen. Mammillosae", + "Frullania subgen. Meteoriopsis", + "Frullania subgen. Microfrullania", + "Frullania subgen. Saccophora", + "Frullania subgen. Steerea", + "Frullania subgen. Thyopsiella" + ], + "n": "", + "r": "GENUS" + }, + "Seligeriaceae": { + "p": "Grimmiales", + "c": [ + "Blindia", + "Blindiadelphus", + "Brachydontium", + "Hymenolomopsis", + "Seligeria" + ], + "n": "", + "r": "FAMILY" + }, + "Piperales": { + "p": "Magnoliidae", + "c": [ + "Asaraceae", + "Aristolochiaceae", + "Hydnoraceae", + "Lactoridaceae", + "Saururaceae", + "Piperaceae" + ], + "n": "", + "r": "ORDER" + }, + "Hypnodendrales": { + "p": "Hypnanae", + "c": [ + "Braithwaiteaceae", + "Hypnodendraceae", + "Pterobryellaceae", + "Racopilaceae" + ], + "n": "", + "r": "ORDER" + }, + "Buxbaumiaceae": { + "p": "Buxbaumiales", + "c": [ + "Buxbaumia" + ], + "n": "", + "r": "FAMILY" + }, + "Nymphaea": { + "p": "Nymphaeaceae", + "c": [], + "n": "water-lilies", + "r": "GENUS" + }, + "Splachnales": { + "p": "Bryanae", + "c": [ + "Meesiaceae", + "Splachnaceae" + ], + "n": "", + "r": "ORDER" + }, + "Calymperaceae": { + "p": "Dicranales", + "c": [ + "Arthrocormus", + "Calymperes", + "Exodictyon", + "Exostratum", + "Leucophanes", + "Mitthyridium", + "Octoblepharum", + "Syrrhopodon" + ], + "n": "", + "r": "FAMILY" + }, + "Victoria": { + "p": "Nymphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trithuria": { + "p": "Hydatellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Serpotortellaceae": { + "p": "Pottiales", + "c": [ + "Serpotortella" + ], + "n": "", + "r": "FAMILY" + }, + "Bryobartramiaceae": { + "p": "Encalyptales", + "c": [ + "Bryobartramia" + ], + "n": "", + "r": "FAMILY" + }, + "Berberidaceae": { + "p": "Ranunculales", + "c": [ + "Berberidoideae", + "Nandinoideae", + "Podophylloideae" + ], + "n": "barberry family", + "r": "FAMILY" + }, + "Spinulum": { + "p": "Lycopodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptychomitriaceae": { + "p": "Grimmiales", + "c": [ + "Campylostelium", + "Indusiella", + "Jaffueliobryum", + "Ptychomitriopsis", + "Ptychomitrium" + ], + "n": "", + "r": "FAMILY" + }, + "Schisandra": { + "p": "Schisandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Timmiaceae": { + "p": "Timmiales", + "c": [ + "Timmia" + ], + "n": "", + "r": "FAMILY" + }, + "Makinoaceae": { + "p": "Makinoiineae", + "c": [ + "Makinoa" + ], + "n": "", + "r": "FAMILY" + }, + "Ginkgoales": { + "p": "Ginkgoidae", + "c": [ + "Ginkgoaceae" + ], + "n": "", + "r": "ORDER" + }, + "Sabiaceae": { + "p": "Proteales", + "c": [ + "Meliosma", + "Ophiocaryon", + "Sabia" + ], + "n": "", + "r": "FAMILY" + }, + "Scouleriaceae": { + "p": "Scouleriales", + "c": [ + "Scouleria", + "Tridontium" + ], + "n": "", + "r": "FAMILY" + }, + "Amborella": { + "p": "Amborellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trochodendraceae": { + "p": "Trochodendrales", + "c": [ + "Tetracentron", + "Trochodendron" + ], + "n": "", + "r": "FAMILY" + }, + "Nelumbonaceae": { + "p": "Proteales", + "c": [ + "Nelumbo" + ], + "n": "lotus family", + "r": "FAMILY" + }, + "Funariaceae": { + "p": "Funariales", + "c": [ + "Afoninia", + "Aphanorrhegma", + "Bryobeckettia", + "Entosthodon", + "Ephemerella", + "Funaria", + "Funariella", + "Goniomitrium", + "Physcomitrella", + "Physcomitrellopsis", + "Physcomitrium", + "Pyramidula" + ], + "n": "", + "r": "FAMILY" + }, + "Ptychomniales": { + "p": "Hypnanae", + "c": [ + "Ptychomniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Lardizabalaceae": { + "p": "Ranunculales", + "c": [ + "Lardizabaloideae", + "Sargentodoxoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Rhachitheciaceae": { + "p": "Dicranales", + "c": [ + "Hypnodontopsis", + "Jonesiobryum", + "Rhachithecium", + "Uleastrum" + ], + "n": "", + "r": "FAMILY" + }, + "Disceliaceae": { + "p": "Funariales", + "c": [ + "Discelium" + ], + "n": "", + "r": "FAMILY" + }, + "Eustichiaceae": { + "p": "Dicranales", + "c": [ + "Eustichia" + ], + "n": "", + "r": "FAMILY" + }, + "Lejeuneoideae": { + "p": "Lejeuneaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Flexitrichaceae": { + "p": "Pseudoditrichales", + "c": [ + "Flexitrichum" + ], + "n": "", + "r": "FAMILY" + }, + "Ondinea": { + "p": "Nymphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petrosaviidae": { + "p": "Liliopsida", + "c": [ + "Asparagales", + "commelinids", + "Dioscoreales", + "Liliales", + "Pandanales", + "Petrosaviales" + ], + "n": "", + "r": "SUBCLASS" + }, + "Psilopilum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platanaceae": { + "p": "Proteales", + "c": [ + "Platanus" + ], + "n": "plane-tree family", + "r": "FAMILY" + }, + "Magnoliales": { + "p": "Magnoliidae", + "c": [ + "Annonaceae", + "Degeneriaceae", + "Eupomatiaceae", + "Himantandraceae", + "Magnoliaceae", + "Myristicaceae" + ], + "n": "", + "r": "ORDER" + }, + "Schistostegaceae": { + "p": "Dicranales", + "c": [ + "Schistostega" + ], + "n": "", + "r": "FAMILY" + }, + "Alophosia": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhizogoniales": { + "p": "Bryanae", + "c": [ + "Aulacomniaceae", + "Orthodontiaceae", + "Rhizogoniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Grimmiaceae": { + "p": "Grimmiales", + "c": [ + "Bucklandiella", + "Codriophorus", + "Coscinodon", + "Dilutineuron", + "Dryptodon", + "Frisvollia", + "Grimmia", + "Niphotrichum", + "Racomitrium", + "Schistidium" + ], + "n": "", + "r": "FAMILY" + }, + "Bruchiaceae": { + "p": "Dicranales", + "c": [ + "Bruchia", + "Cladophascum", + "Trematodon" + ], + "n": "", + "r": "FAMILY" + }, + "Rhabdoweisiaceae": { + "p": "Dicranales", + "c": [ + "Arctoa", + "Brideliella", + "Cnestrum", + "Cynodontium", + "Dichodontium", + "Dicranoweisia", + "Eucamptodon", + "Glyphomitrium", + "Hollia", + "Holodontium", + "Hymenoloma", + "Kiaeria", + "Notocynodontium", + "Oncophorus", + "Oreas", + "Pseudoblindia", + "Pseudohyophila", + "Rhabdoweisia", + "Ripariella", + "Symblepharis" + ], + "n": "", + "r": "FAMILY" + }, + "Oligotrichum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Encalyptaceae": { + "p": "Encalyptales", + "c": [ + "Bryobrittonia", + "Encalypta" + ], + "n": "", + "r": "FAMILY" + }, + "Metzgeria": { + "p": "Metzgeriaceae", + "c": [ + "Metzgeria subgen. Apometzgeria" + ], + "n": "", + "r": "GENUS" + }, + "Nuphar": { + "p": "Nymphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pogonatum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gnetales": { + "p": "Gnetidae", + "c": [ + "Gnetaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ruficaulaceae": { + "p": "Dicranales", + "c": [ + "Ruficaulis" + ], + "n": "", + "r": "FAMILY" + }, + "Pseudoditrichaceae": { + "p": "Pseudoditrichales", + "c": [ + "Chrysoblastella", + "Pseudoditrichum" + ], + "n": "", + "r": "FAMILY" + }, + "Atrichopsis": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ephedrales": { + "p": "Gnetidae", + "c": [ + "Ephedraceae" + ], + "n": "", + "r": "ORDER" + }, + "Dawsonia": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euryale": { + "p": "Nymphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Itatiella": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Illicium": { + "p": "Schisandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Proteaceae": { + "p": "Proteales", + "c": [ + "Adenanthos", + "Agastachys", + "Alloxylon", + "Athertonia", + "Aulax", + "Austromuellera", + "Banksia", + "Beauprea", + "Beaupreopsis", + "Bellendena", + "Bleasdalea", + "Brabejum", + "Buckinghamia", + "Cardwellia", + "Carnarvonia", + "Catalepidia", + "Cenarrhenes", + "Conospermum", + "Darlingia", + "Diastella", + "Dilobeia", + "Eidothea", + "Embothrium", + "Eucarpha", + "Euplassa", + "Faurea", + "Finschia", + "Floydia", + "Franklandia", + "Garnieria", + "Gevuina", + "Grevillea", + "Hakea", + "Helicia", + "Heliciopsis", + "Hicksbeachia", + "Hollandaea", + "Isopogon", + "Kermadecia", + "Knightia", + "Lambertia", + "Lasjia", + "Leucadendron", + "Leucospermum", + "Lomatia", + "Macadamia", + "Malagasia", + "Megahertzia", + "Mimetes", + "Musgravea", + "Neorites", + "Nothorites", + "Opisthiolepis", + "Oreocallis", + "Orites", + "Orothamnus", + "Panopsis", + "Paranomus", + "Persoonia", + "Petrophile", + "Placospermum", + "Protea", + "Roupala", + "Serruria", + "Sleumerodendron", + "Sorocephalus", + "Spatalla", + "Sphalmium", + "Stenocarpus", + "Stirlingia", + "Strangea", + "Symphionema", + "Synaphea", + "Telopea", + "Triunia", + "Turrillia", + "Vexatorella", + "Virotia", + "Xylomelum" + ], + "n": "protea family", + "r": "FAMILY" + }, + "Bartramiopsis": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ranunculaceae": { + "p": "Ranunculales", + "c": [ + "Coptidoideae", + "Glaucidioideae", + "Hydrastidoideae", + "Ranunculoideae", + "Thalictroideae" + ], + "n": "buttercup family", + "r": "FAMILY" + }, + "Hedwigiales": { + "p": "Bryanae", + "c": [ + "Hedwigiaceae", + "Helicophyllaceae", + "Rhacocarpaceae" + ], + "n": "", + "r": "ORDER" + }, + "Austrobaileya": { + "p": "Austrobaileyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurozia": { + "p": "Pleuroziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryoxiphiaceae": { + "p": "Bryoxiphiales", + "c": [ + "Bryoxiphium" + ], + "n": "", + "r": "FAMILY" + }, + "Polytrichadelphus": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypodontiaceae": { + "p": "Dicranales", + "c": [ + "Hypodontium" + ], + "n": "", + "r": "FAMILY" + }, + "Haplomitrium": { + "p": "Haplomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrolycopodium": { + "p": "Lycopodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pottiaceae": { + "p": "Pottiales", + "c": [ + "Acaulon", + "Aloina", + "Aloinella", + "Anoectangium", + "Aschisma", + "Barbula", + "Bellibarbula", + "Bryoerythrophyllum", + "Bulbibarbula", + "Calyptopogon", + "Chenia", + "Chionoloma", + "Cinclidotus", + "Crossidium", + "Crumia", + "Dialytrichia", + "Didymodon", + "Dolotortula", + "Ephemerum", + "Erythrophyllopsis", + "Eucladium", + "Ganguleea", + "Geheebia", + "Gertrudiella", + "Guerramontesia", + "Gymnobarbula", + "Gymnostomiella", + "Gymnostomum", + "Gyroweisia", + "Hennediella", + "Hilpertia", + "Husnotiella", + "Hydrogonium", + "Hymenostyliella", + "Hymenostylium", + "Hyophila", + "Hyophiladelphus", + "Indopottia", + "Leptobarbula", + "Leptodontiella", + "Leptodontium", + "Leptophascum", + "Luisierella", + "Microbryum", + "Mironia", + "Molendoa", + "Oxystegus", + "Pachyneuropsis", + "Pararhexophyllum", + "Phascum", + "Plaubelia", + "Pleurochaete", + "Pottia", + "Pottiopsis", + "Pseudocrossidium", + "Pseudosymblepharis", + "Pterygoneurum", + "Reimersia", + "Rhexophyllum", + "Sagenotortula", + "Saitobryum", + "Sarconeurum", + "Scopelophila", + "Splachnobryum", + "Stegonia", + "Stonea", + "Streblotrichum", + "Streptocalypta", + "Streptopogon", + "Streptotrichum", + "Syntrichia", + "Syntrichiadelphus", + "Tetrapterum", + "Timmiella", + "Tortella", + "Tortula", + "Trachycarpidium", + "Trichostomopsis", + "Trichostomum", + "Triquetrella", + "Tuerckheimia", + "Uleobryum", + "Vinealobryum", + "Weisiopsis", + "Weissia", + "Willia", + "Zanderella" + ], + "n": "", + "r": "FAMILY" + }, + "Ptychanthoideae": { + "p": "Lejeuneaceae", + "c": [ + "Acrolejeunea", + "Archilejeunea", + "Bryopteris", + "Caudalejeunea", + "Dendrolejeunea", + "Dibrachiella", + "Frullanoides", + "Fulfordianthus", + "Lopholejeunea", + "Marchesinia", + "Phaeolejeunea", + "Ptychanthus", + "Schiffneriolejeunea", + "Spruceanthus", + "Thysananthus", + "Trocholejeunea", + "Tuzibeanthus", + "Verdoornianthus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Leucobryaceae": { + "p": "Dicranales", + "c": [ + "Atractylocarpus", + "Bryohumbertia", + "Campylopodiella", + "Campylopus", + "Cladopodanthus", + "Dicranodontium", + "Leucobryum", + "Microcampylopus", + "Ochrobryum", + "Pilopogon", + "Schistomitrium", + "Brothera" + ], + "n": "", + "r": "FAMILY" + }, + "Oedipodium": { + "p": "Oedipodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lycopodiastrum": { + "p": "Lycopodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erpodiaceae": { + "p": "Dicranales", + "c": [ + "Aulacopilum", + "Erpodium", + "Venturiella" + ], + "n": "", + "r": "FAMILY" + }, + "Circaeasteraceae": { + "p": "Ranunculales", + "c": [ + "Circaeaster", + "Kingdonia" + ], + "n": "", + "r": "FAMILY" + }, + "Kadsura": { + "p": "Schisandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudodiphasium": { + "p": "Lycopodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranellopsidaceae": { + "p": "Dicranales", + "c": [ + "Dicranellopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Micromitriaceae": { + "p": "Dicranales", + "c": [ + "Micromitrium" + ], + "n": "", + "r": "FAMILY" + }, + "Hymenophytaceae": { + "p": "Pallaviciniineae", + "c": [ + "Hymenophyton" + ], + "n": "", + "r": "FAMILY" + }, + "Tetraphis": { + "p": "Tetraphidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barclaya": { + "p": "Nymphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Steereobryon": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurophascaceae": { + "p": "Pottiales", + "c": [ + "Pleurophascum" + ], + "n": "", + "r": "FAMILY" + }, + "Notoligotrichum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diphasiastrum": { + "p": "Lycopodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canellales": { + "p": "Magnoliidae", + "c": [ + "Canellaceae", + "Winteraceae" + ], + "n": "", + "r": "ORDER" + }, + "Hypnales": { + "p": "Hypnanae", + "c": [ + "Amblystegiaceae", + "Anomodontaceae", + "Brachytheciaceae", + "Callicladiaceae", + "Calliergonaceae", + "Catagoniaceae", + "Climaciaceae", + "Cryphaeaceae", + "Echinodiaceae", + "Entodontaceae", + "Fabroniaceae", + "Fontinalaceae", + "Helodiaceae", + "Hylocomiaceae", + "Hypnaceae", + "Jocheniaceae", + "Lembophyllaceae", + "Leptodontaceae", + "Lepyrodontaceae", + "Leskeaceae", + "Leucodontaceae", + "Meteoriaceae", + "Miyabeaceae", + "Myriniaceae", + "Myuriaceae", + "Neckeraceae", + "Orthorrhynchiaceae", + "Orthostichellaceae", + "Phyllogoniaceae", + "Plagiotheciaceae", + "Pleuroziopsidaceae", + "Prionodontaceae", + "Pterigynandraceae", + "Pterobryaceae", + "Pylaisiaceae", + "Pylaisiadelphaceae", + "Regmatodontaceae", + "Rhytidiaceae", + "Rigodiaceae", + "Rutenbergiaceae", + "Scorpidiaceae", + "Sematophyllaceae", + "Stereodontaceae", + "Stereophyllaceae", + "Symphyodontaceae", + "Taxiphyllaceae", + "Theliaceae", + "Thuidiaceae", + "Trachylomataceae" + ], + "n": "", + "r": "ORDER" + }, + "Aongstroemiaceae": { + "p": "Dicranales", + "c": [ + "Aongstroemia", + "Calcidicranella", + "Neodicranella", + "Protoaongstroemia" + ], + "n": "", + "r": "FAMILY" + }, + "Polytrichastrum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gunneridae": { + "p": "eudicotyledons", + "c": [ + "Gunnerales", + "Pentapetalae" + ], + "n": "", + "r": "CLADE" + }, + "Tetrodontium": { + "p": "Tetraphidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trimenia": { + "p": "Trimeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acorales": { + "p": "Liliopsida", + "c": [ + "Acoraceae" + ], + "n": "", + "r": "ORDER" + }, + "Chloranthaceae": { + "p": "Chloranthales", + "c": [ + "Ascarina", + "Chloranthus", + "Hedyosmum", + "Sarcandra" + ], + "n": "", + "r": "FAMILY" + }, + "Meiotrichum": { + "p": "Polytrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bartramiales": { + "p": "Bryanae", + "c": [ + "Bartramiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Rhizogemmaceae": { + "p": "Dicranales", + "c": [ + "Rhizogemma" + ], + "n": "", + "r": "FAMILY" + }, + "Treubia": { + "p": "Treubiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrolycopodium": { + "p": "Lycopodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "homocostate pleurocarps": { + "p": "core pleurocarps", + "c": [ + "Hypnidae" + ], + "n": "", + "r": "CLADE" + }, + "Drummondiaceae": { + "p": "Scouleriales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Gigaspermaceae": { + "p": "Gigaspermales", + "c": [ + "Chamaebryum", + "Costesia", + "Gigaspermum", + "Lorentziella", + "Oedipodiella" + ], + "n": "", + "r": "FAMILY" + }, + "Eupteleaceae": { + "p": "Ranunculales", + "c": [ + "Euptelea" + ], + "n": "", + "r": "FAMILY" + }, + "Moerckiaceae": { + "p": "Pallaviciniineae", + "c": [ + "Hattorianthus", + "Moerckia" + ], + "n": "", + "r": "FAMILY" + }, + "Dicranaceae": { + "p": "Dicranales", + "c": [ + "Braunfelsia", + "Camptodontium", + "Campylopodium", + "Chorisodontium", + "Cryptodicranum", + "Dicnemon", + "Dicranella", + "Dicranoloma", + "Dicranum", + "Diobelonella", + "Eucamptodontopsis", + "Holomitriopsis", + "Holomitrium", + "Hygrodicranum", + "Leptotrichella", + "Leucoloma", + "Mesotus", + "Orthodicranum", + "Paraleucobryum", + "Parisia", + "Platyneuron", + "Polymerodon", + "Pseudephemerum", + "Schliephackea", + "Sclerodontium", + "Trichodontium", + "Wardia" + ], + "n": "", + "r": "FAMILY" + }, + "Alismatales": { + "p": "Liliopsida", + "c": [ + "Juncaginaceae", + "Araceae", + "Aponogetonaceae", + "Cymodoceaceae", + "Ruppiaceae", + "Butomaceae", + "Potamogetonaceae", + "Maundiaceae", + "Posidoniaceae", + "Scheuchzeriaceae", + "Hydrocharitaceae", + "Tofieldiaceae", + "Alismataceae", + "Limnocharitaceae", + "Zosteraceae" + ], + "n": "", + "r": "ORDER" + }, + "Christensenia": { + "p": "Marattiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marsilea": { + "p": "Marsileaceae", + "c": [], + "n": "water clovers", + "r": "GENUS" + }, + "Alsophila": { + "p": "Cyatheaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neohattoria": { + "p": "Jubulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothoceros": { + "p": "Dendrocerotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Megaceros": { + "p": "Dendrocerotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Azolla": { + "p": "Salviniaceae", + "c": [], + "n": "mosquito ferns", + "r": "GENUS" + }, + "Nipponolejeunea": { + "p": "Jubulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophosoria": { + "p": "Dicksoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilularia": { + "p": "Marsileaceae", + "c": [], + "n": "pillworts", + "r": "GENUS" + }, + "Loxsoma": { + "p": "Loxsomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eupodium": { + "p": "Marattiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calochlaena": { + "p": "Dicksoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyathea": { + "p": "Cyatheaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marattia": { + "p": "Marattiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptisana": { + "p": "Marattiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerolejeunea": { + "p": "Lejeuneaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phaeomegaceros": { + "p": "Phaeomegacerotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaeropteris": { + "p": "Cyatheaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiogyria": { + "p": "Plagiogyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metaxya": { + "p": "Metaxyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Danaea": { + "p": "Marattiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnosphaera": { + "p": "Cyatheaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loxsomopsis": { + "p": "Loxsomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cibotium": { + "p": "Cibotiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Regnellidium": { + "p": "Marsileaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicksonia": { + "p": "Dicksoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendroceros": { + "p": "Dendrocerotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jubula": { + "p": "Jubulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Angiopteris": { + "p": "Marattiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Culcita": { + "p": "Culcitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salvinia": { + "p": "Salviniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osmundastrum": { + "p": "Osmundaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plenasium": { + "p": "Osmundaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Claytosmunda": { + "p": "Osmundaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenophylloideae": { + "p": "Hymenophyllaceae", + "c": [ + "Hymenophyllum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Equisetum": { + "p": "Equisetaceae", + "c": [], + "n": "horstails", + "r": "GENUS" + }, + "Osmunda": { + "p": "Osmundaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anemia": { + "p": "Anemiaceae", + "c": [], + "n": "Anemia, the fern with tired blood", + "r": "GENUS" + }, + "Trichomanoideae": { + "p": "Hymenophyllaceae", + "c": [ + "Abrodictyum", + "Callistopteris", + "Cephalomanes", + "Crepidomanes", + "Didymoglossum", + "Polyphlebium", + "Trichomanes", + "Vandenboschia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Thyrsopteris": { + "p": "Thyrsopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptopteris": { + "p": "Osmundaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plenasium x Osmunda": { + "p": "Osmundaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Davalliaceae": { + "p": "Polypodiineae", + "c": [ + "Davallia", + "Humata", + "Paradavallodes" + ], + "n": "", + "r": "FAMILY" + }, + "Pteridryaceae": { + "p": "Polypodiineae", + "c": [ + "Draconopteris", + "Malaifilix", + "Polydictyum", + "Pteridrys" + ], + "n": "", + "r": "FAMILY" + }, + "Microschizaea": { + "p": "Schizaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cystopteridaceae": { + "p": "Aspleniineae", + "c": [ + "Acystopteris", + "Cystoathyrium", + "Cystopteris", + "Gymnocarpium", + "x Cystocarpium" + ], + "n": "", + "r": "FAMILY" + }, + "Gleichenella": { + "p": "Gleicheniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnomitrion": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrobolbus": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saccolomataceae": { + "p": "Saccolomatineae", + "c": [ + "Orthiopteris", + "Saccoloma" + ], + "n": "", + "r": "FAMILY" + }, + "Desmophlebiaceae": { + "p": "Aspleniineae", + "c": [ + "Desmophlebium" + ], + "n": "", + "r": "FAMILY" + }, + "Austrolophozia": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aspleniaceae": { + "p": "Aspleniineae", + "c": [ + "Diellia", + "Hymenasplenium", + "Asplenium" + ], + "n": "", + "r": "FAMILY" + }, + "Endogemma": { + "p": "Endogemmataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gyrothyra": { + "p": "Gyrothyraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gleichenia": { + "p": "Gleicheniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oleandraceae": { + "p": "Polypodiineae", + "c": [ + "Oleandra" + ], + "n": "", + "r": "FAMILY" + }, + "Stromatopteris": { + "p": "Gleicheniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nanomarsupella": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apomarsupella": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemidictyaceae": { + "p": "Aspleniineae", + "c": [ + "Hemidictyum" + ], + "n": "", + "r": "FAMILY" + }, + "Goebelobryum": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tectariaceae": { + "p": "Polypodiineae", + "c": [ + "Arthropteris", + "Cionidium", + "Heterogonium", + "Hypoderris", + "Tectaria", + "Triplophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Psilotum": { + "p": "Psilotaceae", + "c": [], + "n": "whisk ferns", + "r": "GENUS" + }, + "Goebeliella": { + "p": "Goebeliellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tmesipteris": { + "p": "Psilotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Matonia": { + "p": "Matoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizaea": { + "p": "Schizaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidogyna": { + "p": "Lepidolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lygodium": { + "p": "Lygodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Enigmella": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipteris": { + "p": "Dipteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blechnaceae": { + "p": "Aspleniineae", + "c": [ + "Blechnoideae", + "Pteridoblechnum", + "Steenisioblechnum", + "Stenochlaenoideae", + "Woodwardioideae" + ], + "n": "", + "r": "FAMILY" + }, + "Pteridaceae": { + "p": "Pteridineae", + "c": [ + "Cheilanthoideae", + "Cryptogrammoideae", + "Parkerioideae", + "Pteridoideae", + "Vittarioideae" + ], + "n": "", + "r": "FAMILY" + }, + "Sticherus": { + "p": "Gleicheniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helminthostachyoideae": { + "p": "Ophioglossaceae", + "c": [ + "Helminthostachys" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Conoscyphus": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macvicaria": { + "p": "Porellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cystodiaceae": { + "p": "Lindsaeineae", + "c": [ + "Cystodium" + ], + "n": "", + "r": "FAMILY" + }, + "Lomariopsidaceae": { + "p": "Polypodiineae", + "c": [ + "Cyclopeltis", + "Dracoglossum", + "Lomariopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Diplaziopsidaceae": { + "p": "Aspleniineae", + "c": [ + "Diplaziopsis", + "Homalosorus" + ], + "n": "", + "r": "FAMILY" + }, + "Woodsiaceae": { + "p": "Aspleniineae", + "c": [ + "Physematium", + "Woodsia" + ], + "n": "", + "r": "FAMILY" + }, + "Nephrolepidaceae": { + "p": "Polypodiineae", + "c": [ + "Nephrolepis" + ], + "n": "", + "r": "FAMILY" + }, + "Athyriaceae": { + "p": "Aspleniineae", + "c": [ + "Allantodia", + "Anisocampium", + "Athyriopsis", + "Athyrium", + "Cornopteris", + "Deparia", + "Diplazium", + "Dryoathyrium", + "Kuniwatsukia", + "Lunathyrium", + "Pseudathyrium", + "Pseudocystopteris" + ], + "n": "", + "r": "FAMILY" + }, + "Rhachidosoraceae": { + "p": "Aspleniineae", + "c": [ + "Rhachidosorus" + ], + "n": "", + "r": "FAMILY" + }, + "Porella": { + "p": "Porellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ophioglossoideae": { + "p": "Ophioglossaceae", + "c": [ + "Ophioglossum", + "Cheiroglossa", + "Ophioderma" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Acrolophozia": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gackstroemia": { + "p": "Lepidolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paramomitrion": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grammitidaceae": { + "p": "Polypodiineae", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Lonchitidaceae": { + "p": "Lindsaeineae", + "c": [ + "Lonchitis" + ], + "n": "", + "r": "FAMILY" + }, + "Marsupella": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypodematiaceae": { + "p": "Polypodiineae", + "c": [ + "Hypodematium", + "Leucostegia" + ], + "n": "", + "r": "FAMILY" + }, + "Marsupidium": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Todea": { + "p": "Osmundaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymochlaenaceae": { + "p": "Polypodiineae", + "c": [ + "Didymochlaena" + ], + "n": "", + "r": "FAMILY" + }, + "Ascidiota": { + "p": "Porellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jubulopsis": { + "p": "Lepidolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polypodiaceae": { + "p": "Polypodiineae", + "c": [ + "Drynarioideae", + "Grammitidoideae", + "Loxogrammoideae", + "Microsoroideae", + "Platycerioideae", + "Polypodioideae" + ], + "n": "", + "r": "FAMILY" + }, + "Thelypteridaceae": { + "p": "Aspleniineae", + "c": [ + "Phegopteridoideae", + "Thelypteridoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Actinostachys": { + "p": "Schizaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poeltia": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheiropleuria": { + "p": "Dipteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranopteris": { + "p": "Gleicheniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryopteridaceae": { + "p": "Polypodiineae", + "c": [ + "Dryopteridoideae", + "Elaphoglossoideae", + "Polybotryoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Lethocolea": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radula": { + "p": "Radulaceae", + "c": [ + "Radula subgen. Amentuloradula", + "Radula subgen. Cladoradula", + "Radula subgen. Dactyloradula", + "Radula subgen. Metaradula", + "Radula subgen. Odontoradula", + "Radula subgen. Radula", + "Radula subgen. Volutoradula" + ], + "n": "", + "r": "GENUS" + }, + "Lepidolaena": { + "p": "Lepidolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Onocleaceae": { + "p": "Aspleniineae", + "c": [ + "Matteuccia", + "Onoclea", + "Onocleopsis", + "Pentarhizidium" + ], + "n": "", + "r": "FAMILY" + }, + "Botrychioideae": { + "p": "Ophioglossaceae", + "c": [ + "Botrypus", + "Botrychium", + "Japanobotrychium", + "Sceptridium" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Prasanthus": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplopterygium": { + "p": "Gleicheniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dennstaedtiaceae": { + "p": "Dennstaedtiineae", + "c": [ + "Blotiella", + "Coptidipteris", + "Dennstaedtia", + "Histiopteris", + "Hiya", + "Hypolepis", + "Leptolepia", + "Microlepia", + "Monachosorum", + "Oenotrichia", + "Paesia", + "Pteridium", + "Schizoloma" + ], + "n": "", + "r": "FAMILY" + }, + "Rouxopteris": { + "p": "Gleicheniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lindsaeaceae": { + "p": "Lindsaeineae", + "c": [ + "Lindsaea", + "Nesolindsaea", + "Odontosoria", + "Ormoloma", + "Osmolindsaea", + "Sphenomeris", + "Tapeinidium", + "x Lindsaeosoria" + ], + "n": "", + "r": "FAMILY" + }, + "Mankyuoideae": { + "p": "Ophioglossaceae", + "c": [ + "Mankyua" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Nardia": { + "p": "Gymnomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phanerosorus": { + "p": "Matoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rivulariella": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrodiplophyllum": { + "p": "Scapaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anomoclada": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiochilion": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnocolea": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptophyllopsis": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthocaulis": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saccogyna": { + "p": "Saccogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremonotus": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schofieldia": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Liochlaena": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptoplagiochila": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eotrichocolea": { + "p": "Trichocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chiloscyphus": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zantenia": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplocolea": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fuscocephaloziopsis": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hamatostrepta": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizophyllopsis": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pedinophyllopsis": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vetaforma": { + "p": "Lepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptocoleopsis": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetralophozia": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hepatostolonophora": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachyglossa": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jackiella": { + "p": "Jackiellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Trichothallia": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Cyanolophocolea": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pigafettoa": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudotritomaria": { + "p": "Scapaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protosolenostoma": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiochila": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jamesonielloideae": { + "p": "Adelanthaceae", + "c": [ + "Anomacaulis", + "Cuspidatula", + "Denotarisia", + "Jamesoniella", + "Nothostrepta", + "Pisanoa", + "Protosyzygiella", + "Roivainenia", + "Syzygiella", + "Vanaea" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Scaphophyllum": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haesselia": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isopaches": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Neoneura": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Acrochila": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arctoscyphus": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saccogynidium": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladopodiella": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vietnamiella": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurocladula": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heteroscyphus": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiocolea": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aponardia": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichocolea": { + "p": "Trichocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physotheca": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anastrophyllum": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barbilophozia": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saccobasis": { + "p": "Scapaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphenolobopsis": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoorthocaulis": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solenostoma": { + "p": "Solenostomataceae", + "c": [ + "Solenostoma subgen. Eucalyx", + "Solenostoma subgen. Metasolenostoma", + "Solenostoma subgen. Plectocolea", + "Solenostoma subgen. Solenostoma" + ], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Spinella": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Riccardia subgen. Hyaloneura": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Leiomitra": { + "p": "Trichocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herbertus": { + "p": "Herbertaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adelanthoideae": { + "p": "Adelanthaceae", + "c": [ + "Adelanthus", + "Pseudomarsupidium", + "Wettsteinia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Schljakovianthus": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Horikawaella": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Biantheridion": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Otoscyphus": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptochila": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alobiella": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptoscyphus": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptolophocolea": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bragginsella": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anastrepta": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesoptychia": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chandonanthus": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schiffneria": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudolophocolea": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Douinia": { + "p": "Scapaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Lophoneura": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Schistochilopsis": { + "p": "Scapaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphenolobus": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophozia": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clasmatocolea": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alobiellopsis": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Arceoneura": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Gerhildiella": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hattoria": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plectocolea": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Evansianthus": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossocalyx": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiochilidium": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metahygrobiella": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xenochila": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplophyllum": { + "p": "Scapaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrofossombronia": { + "p": "Fossombroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Phycaneura": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Nowellia": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudolophozia": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptocolea": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Delavayella": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schljakovia": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jungermannia": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophocolea": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trabacellula": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Riccardia": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Heterogemma": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perdusenia": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fossombronia": { + "p": "Fossombroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plicanthus": { + "p": "Anastrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalozia": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Odontoschisma": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pedinophyllum": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trilophozia": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepicolea": { + "p": "Lepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triandrophyllum": { + "p": "Herbertaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocephaloziella": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metasolenostoma": { + "p": "Solenostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lamellocolea": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophoziopsis": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tylimanthus": { + "p": "Acrobolbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scapania": { + "p": "Scapaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dinckleria": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blepharostoma": { + "p": "Blepharostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hattoriella": { + "p": "Jungermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chiastocaulon": { + "p": "Plagiochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Thornoneura": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Amphilophocolea": { + "p": "Lophocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tritomaria": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riccardia subgen. Corioneura": { + "p": "Riccardia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Perssoniella": { + "p": "Perssoniellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Iwatsukia": { + "p": "Cephaloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andrewsianthus": { + "p": "Lophoziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isotachis": { + "p": "Balantiopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophonardia": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphicephalozia": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oleolophozia": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudolepicolea": { + "p": "Pseudolepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isophyllaria": { + "p": "Pseudolepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephaloziella": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protolophozia": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetophyllopsis": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herzogobryum": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acroscyphella": { + "p": "Balantiopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allisoniella": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Obtusifolium": { + "p": "Obtusifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blepharidophyllum": { + "p": "Blepharidophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geocalyx": { + "p": "Geocalycaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herzogiaria": { + "p": "Pseudolepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllothallia": { + "p": "Phyllothalliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Temnoma": { + "p": "Pseudolepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chonecolea": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephaloziopsis": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothogymnomitrion": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anastrophyllopsis": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hygrobiella": { + "p": "Antheliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clandarium": { + "p": "Blepharidophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisotachis": { + "p": "Balantiopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Notoscyphus": { + "p": "Notoscyphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mastigophora": { + "p": "Mastigophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gottschelia": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arnellia": { + "p": "Arnelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Castanoclobos": { + "p": "Pseudolepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cylindrocolea": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnocoleopsis": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoisotachis": { + "p": "Balantiopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sewardiella": { + "p": "Petalophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthelia": { + "p": "Antheliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetocolea": { + "p": "Pseudolepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruizanthus": { + "p": "Balantiopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichotemnoma": { + "p": "Trichotemnomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiomylia": { + "p": "Myliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petalophyllum": { + "p": "Petalophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kymatocalyx": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendromastigophora": { + "p": "Mastigophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balantiopsis": { + "p": "Balantiopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalomitrion": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mylia": { + "p": "Myliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Archeophylla": { + "p": "Pseudolepicoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phycolepidozia": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neesioscyphus": { + "p": "Balantiopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Konstantinovia": { + "p": "Obtusifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalojonesia": { + "p": "Cephaloziellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophochaete": { + "p": "Antheliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lembidioideae": { + "p": "Lepidoziaceae", + "c": [ + "Dendrolembidium", + "Hygrolembidium", + "Isolembidium", + "Kurzia", + "Lembidium", + "Megalembidium", + "Pseudocephalozia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Protocephalozioideae": { + "p": "Lepidoziaceae", + "c": [ + "Protocephalozia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Gongylanthus": { + "p": "Southbyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurocladopsis": { + "p": "Schistochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zoopsidoideae": { + "p": "Lepidoziaceae", + "c": [ + "Amazoopsis", + "Arachniopsis", + "Hyalolepidozia", + "Monodactylopsis", + "Neogrollea", + "Odontoseries", + "Paracromastigum", + "Psiloclada", + "Pteropsiella", + "Telaranea", + "Zoopsidella", + "Zoopsis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Metacalypogeia": { + "p": "Calypogeiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micropterygioideae": { + "p": "Lepidoziaceae", + "c": [ + "Micropterygium", + "Mytilopsis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Schistochila": { + "p": "Schistochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brevianthus": { + "p": "Brevianthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Southbya": { + "p": "Southbyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mizutania": { + "p": "Calypogeiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stephaniellidium": { + "p": "Stephaniellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidozioideae": { + "p": "Lepidoziaceae", + "c": [ + "Ceramanus", + "Lepidozia", + "Neolepidozia", + "Tricholepidozia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Grollea": { + "p": "Grolleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eocalypogeia": { + "p": "Calypogeiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protoharpanthus": { + "p": "Harpanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mnioloma": { + "p": "Calypogeiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bazzanioideae": { + "p": "Lepidoziaceae", + "c": [ + "Acromastigum", + "Bazzania", + "Mastigopelma" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Paraschistochila": { + "p": "Schistochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calypogeia": { + "p": "Calypogeiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stephaniella": { + "p": "Stephaniellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calycularia": { + "p": "Calyculariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drucelloideae": { + "p": "Lepidoziaceae", + "c": [ + "Drucella" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Gottschea": { + "p": "Schistochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harpanthus": { + "p": "Harpanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachyschistochila": { + "p": "Schistochilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chasmantheroideae": { + "p": "Menispermaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Tetracymbaliella": { + "p": "Brevianthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Theriotia": { + "p": "Diphysciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sandeothallus": { + "p": "Sandeothallaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptostomataceae": { + "p": "Bryales", + "c": [ + "Leptostomum" + ], + "n": "", + "r": "FAMILY" + }, + "Eccremidium": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tristichium": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Distichium": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zamiaceae": { + "p": "Cycadales", + "c": [ + "Ceratozamia", + "Dioon", + "Encephalartos", + "Lepidozamia", + "Macrozamia", + "Microcycas", + "Stangeria", + "Zamia" + ], + "n": "", + "r": "FAMILY" + }, + "Didymeles": { + "p": "Buxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Frullania subgen. Microfrullania": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Symphyogynopsis": { + "p": "Pallaviciniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haptanthus": { + "p": "Buxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podomitrium": { + "p": "Pallaviciniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheilothela": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Styloceras": { + "p": "Buxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Frullania subgen. Thyopsiella": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Hypopterygiaceae": { + "p": "Hookeriales", + "c": [ + "Arbusculohypopterygium", + "Canalohypopterygium", + "Catharomnion", + "Cyathophorella", + "Cyathophorum", + "Dendrocyathophorum", + "Dendrohypopterygium", + "Hypopterygium", + "Lopidium" + ], + "n": "", + "r": "FAMILY" + }, + "Frullania subgen. Diastaloba": { + "p": "Frullania", + "c": [ + "Diastaloba I", + "Diastaloba II", + "Diastaloba III", + "Diastaloba IV" + ], + "n": "", + "r": "SUBGENUS" + }, + "Notobuxus": { + "p": "Buxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pulchrinodaceae": { + "p": "Bryales", + "c": [ + "Pulchrinodus" + ], + "n": "", + "r": "FAMILY" + }, + "Xenothallus": { + "p": "Pallaviciniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Frullania subgen. Mammillosae": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Lauraceae": { + "p": "Laurales", + "c": [ + "Actinodaphne", + "Adenodaphne", + "Aiouea", + "Alseodaphne", + "Alseodaphnopsis", + "Anaueria", + "Aniba", + "Apollonias", + "Aspidostemon", + "Beilschmiedia", + "Caryodaphnopsis", + "Cassytha", + "Chlorocardium", + "Cinnadenia", + "Cinnamomum", + "Cryptocarya", + "Dahlgrenodendron", + "Damburneya", + "Dehaasia", + "Dicypellium", + "Dodecadenia", + "Endiandra", + "Endlicheria", + "Eusideroxylon", + "Hexapora", + "Hypodaphnis", + "Iteadaphne", + "Kubitzkia", + "Kuloa", + "Laurus", + "Licaria", + "Lindera", + "Litsea", + "Machilus", + "Mespilodaphne", + "Mezilaurus", + "Mocinnodaphne", + "Nectandra", + "Neocinnamomum", + "Neolitsea", + "Nothaphoebe", + "Ocotea", + "Paraia", + "Parasassafras", + "Persea", + "Phoebe", + "Phyllostemonodaphne", + "Pleurothyrium", + "Potameia", + "Potoxylon", + "Povedadaphne", + "Ravensara", + "Rhodostemonodaphne", + "Sassafras", + "Sextonia", + "Sinopora", + "Sinosassafras", + "Syndiclis", + "Triadodaphne", + "Umbellularia", + "Urbanodendron", + "Williamodendron", + "Yasunia" + ], + "n": "laurel family", + "r": "FAMILY" + }, + "Blindia": { + "p": "Seligeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asaraceae": { + "p": "Piperales", + "c": [ + "Asarum", + "Saruma" + ], + "n": "", + "r": "FAMILY" + }, + "Symphyogyna": { + "p": "Pallaviciniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catoscopiaceae": { + "p": "Bryales", + "c": [ + "Catoscopium" + ], + "n": "", + "r": "FAMILY" + }, + "Menispermoideae": { + "p": "Menispermaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Wilsoniella": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachysandra": { + "p": "Buxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthotrichaceae": { + "p": "Orthotrichales", + "c": [ + "Amphidium", + "Atlantichella", + "Australoria", + "Bryodixonia", + "Bryomaltaea", + "Cardotiella", + "Codonoblepharon", + "Desmotheca", + "Drummondia", + "Groutiella", + "Leiomitrium", + "Leptodontiopsis", + "Leratia", + "Lewinskya", + "Macrocoma", + "Macromitrium", + "Matteria", + "Muelleriella", + "Nyholmiella", + "Orthomitrium", + "Orthotrichum", + "Pentastichella", + "Plenogemma", + "Pleurorthotrichum", + "Pulvigera", + "Schlotheimia", + "Sehnemobryum", + "Stoneobryum", + "Ulota", + "Zygodon" + ], + "n": "", + "r": "FAMILY" + }, + "Atherospermataceae": { + "p": "Laurales", + "c": [ + "Atherosperma", + "Daphnandra", + "Doryphora", + "Dryadodaphne", + "Laurelia", + "Laureliopsis", + "Nemuaron" + ], + "n": "", + "r": "FAMILY" + }, + "Frullania subgen. Diversitextae": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Frullania subgen. Steerea": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Muscoflorschuetzia": { + "p": "Diphysciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calycanthaceae": { + "p": "Laurales", + "c": [ + "Calycanthus", + "Chimonanthus", + "Idiospermoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Buxus": { + "p": "Buxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pallavicinia": { + "p": "Pallaviciniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astomiopsis": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydnoraceae": { + "p": "Piperales", + "c": [ + "Hydnora", + "Prosopanche" + ], + "n": "", + "r": "FAMILY" + }, + "Gomortegaceae": { + "p": "Laurales", + "c": [ + "Gomortega" + ], + "n": "", + "r": "FAMILY" + }, + "Trichodon": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stangeriaceae": { + "p": "Cycadales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Frullania subgen. Homotropantha": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Aristolochiaceae": { + "p": "Piperales", + "c": [ + "Aristolochia", + "Holostylis", + "Pararistolochia", + "Thottea" + ], + "n": "birthwort family", + "r": "FAMILY" + }, + "Piperaceae": { + "p": "Piperales", + "c": [ + "Macropiper", + "Manekia", + "Piper", + "Peperomia", + "Trianaeopiper", + "Verhuellia", + "Zippelia" + ], + "n": "pepper family", + "r": "FAMILY" + }, + "Welwitschiaceae": { + "p": "Welwitschiales", + "c": [ + "Welwitschia" + ], + "n": "", + "r": "FAMILY" + }, + "Araucariales": { + "p": "Conifers II", + "c": [ + "Araucariaceae", + "Podocarpaceae" + ], + "n": "", + "r": "ORDER" + }, + "Frullania subgen. Chonanthelia": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Papaveroideae": { + "p": "Papaveraceae", + "c": [ + "Arctomecon", + "Argemone", + "Sanguinaria", + "Bocconia", + "Canbya", + "Cathcartia", + "Chelidonium", + "Coreanomecon", + "Dendromecon", + "Dicranostigma", + "Eomecon", + "Glaucium", + "Hunnemannia", + "Hylomecon", + "Macleaya", + "Meconella", + "Meconopsis", + "Oceanopapaver", + "Papaver", + "Platystemon", + "Platystigma", + "Roemeria", + "Romneya", + "Stylomecon", + "Stylophorum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Allisonia": { + "p": "Allisoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siparunaceae": { + "p": "Laurales", + "c": [ + "Glossocalyx", + "Siparuna" + ], + "n": "", + "r": "FAMILY" + }, + "Rhamphidium": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Seligeria": { + "p": "Seligeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilotrichaceae": { + "p": "Hookeriales", + "c": [ + "Actinodontium", + "Amblytropis", + "Brymela", + "Callicostella", + "Callicostellopsis", + "Cyclodictyon", + "Diploneuron", + "Hemiragis", + "Hookeriopsis", + "Hypnella", + "Lepidopilidium", + "Lepidopilum", + "Neohypnella", + "Philophyllum", + "Pilotrichidium", + "Pilotrichum", + "Stenodesmus", + "Stenodictyon", + "Thamniopsis", + "Trachyxiphium" + ], + "n": "", + "r": "FAMILY" + }, + "Eschscholzioideae": { + "p": "Papaveraceae", + "c": [ + "Eschscholzia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Frullania subgen. Saccophora": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Bryomanginia": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleuridium": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mittenia": { + "p": "Mitteniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jensenia": { + "p": "Pallaviciniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllodrepaniaceae": { + "p": "Bryales", + "c": [ + "Mniomalia", + "Phyllodrepanium" + ], + "n": "", + "r": "FAMILY" + }, + "Frullania subgen. Meteoriopsis": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Hernandiaceae": { + "p": "Laurales", + "c": [ + "Gyrocarpus", + "Hazomalania", + "Hernandia", + "Illigera", + "Sparattanthelium" + ], + "n": "", + "r": "FAMILY" + }, + "Pterobryellaceae": { + "p": "Hypnodendrales", + "c": [ + "Cyrtopodendron", + "Pterobryella", + "Sciadocladus" + ], + "n": "", + "r": "FAMILY" + }, + "Saururaceae": { + "p": "Piperales", + "c": [ + "Anemopsis", + "Gymnotheca", + "Houttuynia", + "Saururus" + ], + "n": "lizard's-tail family", + "r": "FAMILY" + }, + "Seppeltia": { + "p": "Pallaviciniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Racopilaceae": { + "p": "Hypnodendrales", + "c": [ + "Powellia", + "Racopilum" + ], + "n": "", + "r": "FAMILY" + }, + "Blindiadelphus": { + "p": "Seligeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Daltoniaceae": { + "p": "Hookeriales", + "c": [ + "Achrophyllum", + "Adelothecium", + "Beeveria", + "Benitotania", + "Calyptrochaeta", + "Crosbya", + "Daltonia", + "Distichophyllidium", + "Distichophyllum", + "Ephemeropsis", + "Leskeodon", + "Metadistichophyllum", + "Bryobrothera" + ], + "n": "", + "r": "FAMILY" + }, + "Mniaceae": { + "p": "Bryales", + "c": [ + "Cinclidium", + "Cyrtomnium", + "Epipterygium", + "Leucolepis", + "Mielichhoferia", + "Mnium", + "Orthomnion", + "Plagiomnium", + "Pohlia", + "Pseudobryum", + "Rhizomnium", + "Schizymenium", + "Trachycystis" + ], + "n": "", + "r": "FAMILY" + }, + "Braithwaiteaceae": { + "p": "Hypnodendrales", + "c": [ + "Braithwaitea" + ], + "n": "", + "r": "FAMILY" + }, + "Brachydontium": { + "p": "Seligeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saulomataceae": { + "p": "Hookeriales", + "c": [ + "Ancistrodes", + "Sauloma" + ], + "n": "", + "r": "FAMILY" + }, + "Archidium": { + "p": "Archidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratophyllum": { + "p": "Ceratophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ditrichum": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratodon": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hookeriaceae": { + "p": "Hookeriales", + "c": [ + "Crossomitrium", + "Hookeria" + ], + "n": "", + "r": "FAMILY" + }, + "Sarcococca": { + "p": "Buxaceae", + "c": [], + "n": "sweet box", + "r": "GENUS" + }, + "Frullania subgen. Frullania": { + "p": "Frullania", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Pinales": { + "p": "Conifers I", + "c": [ + "Pinaceae" + ], + "n": "", + "r": "ORDER" + }, + "Saelania": { + "p": "Saelaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schimperobryaceae": { + "p": "Hookeriales", + "c": [ + "Schimperobryum" + ], + "n": "", + "r": "FAMILY" + }, + "Fumarioideae": { + "p": "Papaveraceae", + "c": [ + "Adlumia", + "Capnoides", + "Ceratocapnos", + "Corydalis", + "Cryptocapnos", + "Cysticapnos", + "Dactylicapnos", + "Dicentra", + "Discocapnos", + "Ehrendorferia", + "Fumaria", + "Fumariola", + "Hypecoum", + "Ichtyoselmis", + "Lamprocapnos", + "Platycapnos", + "Pseudofumaria", + "Pteridophyllum", + "Rupicapnos", + "Sarcocapnos", + "Trigonocapnos" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Roellobryaceae": { + "p": "Bryales", + "c": [ + "Roellobryon" + ], + "n": "", + "r": "FAMILY" + }, + "Hymenolomopsis": { + "p": "Seligeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lactoridaceae": { + "p": "Piperales", + "c": [ + "Lactoris" + ], + "n": "", + "r": "FAMILY" + }, + "Bryaceae": { + "p": "Bryales", + "c": [ + "Acidodontium", + "Anomobryum", + "Brachymenium", + "Bryum", + "Gemmabryum", + "Haplodontium", + "Imbribryum", + "Leptostomopsis", + "Osculatia", + "Plagiobryum", + "Ptychostomum", + "Rhodobryum", + "Rosulabryum" + ], + "n": "", + "r": "FAMILY" + }, + "Monimiaceae": { + "p": "Laurales", + "c": [ + "Austromatthaea", + "Decarydendron", + "Ephippiandra", + "Faika", + "Grazielanthus", + "Hedycarya", + "Hemmantia", + "Hennecartia", + "Hortonia", + "Kairoa", + "Kibara", + "Kibaropsis", + "Levieria", + "Macropeplus", + "Macrotorus", + "Matthaea", + "Mollinedia", + "Monimia", + "Palmeria", + "Pendressia", + "Peumus", + "Steganthera", + "Tambourissa", + "Tetrasynandra", + "Wilkiea", + "Xymalos" + ], + "n": "", + "r": "FAMILY" + }, + "Greeneothallus": { + "p": "Pallaviciniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fissidens": { + "p": "Fissidentaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cupressales": { + "p": "Conifers II", + "c": [ + "Cupressaceae", + "Sciadopityaceae", + "Taxaceae" + ], + "n": "", + "r": "ORDER" + }, + "Hypnodendraceae": { + "p": "Hypnodendrales", + "c": [ + "Bescherellia", + "Cyrtopus", + "Dendro-hypnum", + "Franciella", + "Hypnodendron", + "Mniodendron", + "Spiridens", + "Touwiodendron" + ], + "n": "", + "r": "FAMILY" + }, + "Buxbaumia": { + "p": "Buxbaumiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucomiaceae": { + "p": "Hookeriales", + "c": [ + "Leucomium", + "Rhynchostegiopsis", + "Tetrastichium" + ], + "n": "", + "r": "FAMILY" + }, + "Cycadaceae": { + "p": "Cycadales", + "c": [ + "Bowenia", + "Cycas" + ], + "n": "", + "r": "FAMILY" + }, + "Garckea": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ditrichopsis": { + "p": "Ditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diphyscium": { + "p": "Diphysciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platanus": { + "p": "Platanaceae", + "c": [], + "n": "plane trees", + "r": "GENUS" + }, + "Bucklandiella": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhabdoweisia": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oncophorus": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hollia": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eustichia": { + "p": "Eustichiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Serpotortella": { + "p": "Serpotortellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Niphotrichum": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Magnoliaceae": { + "p": "Magnoliales", + "c": [ + "Liriodendron", + "Magnolia", + "Michelia" + ], + "n": "magnolia family", + "r": "FAMILY" + }, + "Goniomitrium": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Annonaceae": { + "p": "Magnoliales", + "c": [ + "Ambavioideae", + "Anaxagoreoideae", + "Annonoideae", + "Chieniodendron", + "Guamia", + "Malmeoideae", + "Mitrella" + ], + "n": "custard-apple family", + "r": "FAMILY" + }, + "Calymperes": { + "p": "Calymperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sabia": { + "p": "Sabiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exostratum": { + "p": "Calymperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exodictyon": { + "p": "Calymperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glyphomitrium": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nandinoideae": { + "p": "Berberidaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Notocynodontium": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asparagales": { + "p": "Petrosaviidae", + "c": [ + "Agavaceae", + "Asphodelaceae", + "Amaryllidaceae", + "Asparagaceae", + "Asteliaceae", + "Blandfordiaceae", + "Boryaceae", + "Hemerocallidaceae", + "Doryanthaceae", + "Hyacinthaceae", + "Hypoxidaceae", + "Iridaceae", + "Ixioliriaceae", + "Lanariaceae", + "Laxmanniaceae", + "Ruscaceae", + "Orchidaceae", + "Tecophilaeaceae", + "Themidaceae", + "Xeronemataceae" + ], + "n": "", + "r": "ORDER" + }, + "Dioscoreales": { + "p": "Petrosaviidae", + "c": [ + "Burmanniaceae", + "Nartheciaceae", + "Taccaceae", + "Thismiaceae", + "Dioscoreaceae" + ], + "n": "", + "r": "ORDER" + }, + "Jaffueliobryum": { + "p": "Ptychomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cnestrum": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scouleria": { + "p": "Scouleriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranoweisia": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudohyophila": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uleastrum": { + "p": "Rhachitheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Holodontium": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichodontium": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physcomitrella": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetracentron": { + "p": "Trochodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nelumbo": { + "p": "Nelumbonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physcomitrellopsis": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Racomitrium": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meliosma": { + "p": "Sabiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lardizabaloideae": { + "p": "Lardizabalaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Cladophascum": { + "p": "Bruchiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jonesiobryum": { + "p": "Rhachitheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grimmia": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypnodontopsis": { + "p": "Rhachitheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symblepharis": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Degeneriaceae": { + "p": "Magnoliales", + "c": [ + "Degeneria" + ], + "n": "", + "r": "FAMILY" + }, + "Sargentodoxoideae": { + "p": "Lardizabalaceae", + "c": [ + "Sargentodoxa" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Orthodontiaceae": { + "p": "Rhizogoniales", + "c": [ + "Hymenodon", + "Leptotheca", + "Orthodontium", + "Orthodontopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Dilutineuron": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schistidium": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Discelium": { + "p": "Disceliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryobartramia": { + "p": "Bryobartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cynodontium": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Entosthodon": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ophiocaryon": { + "p": "Sabiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indusiella": { + "p": "Ptychomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brideliella": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyramidula": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ginkgoaceae": { + "p": "Ginkgoales", + "c": [ + "Ginkgo" + ], + "n": "", + "r": "FAMILY" + }, + "Ripariella": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mitthyridium": { + "p": "Calymperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryptodon": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Funariella": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trematodon": { + "p": "Bruchiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Splachnaceae": { + "p": "Splachnales", + "c": [ + "Aplodon", + "Brachymitrion", + "Splachnum", + "Tayloria", + "Tetraplodon", + "Voitia" + ], + "n": "", + "r": "FAMILY" + }, + "Rhizogoniaceae": { + "p": "Rhizogoniales", + "c": [ + "Calomnion", + "Cryptopodium", + "Goniobryum", + "Pyrrhobryum", + "Rhizogonium" + ], + "n": "", + "r": "FAMILY" + }, + "Schistostega": { + "p": "Schistostegaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Timmia": { + "p": "Timmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Funaria": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphanorrhegma": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afoninia": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codriophorus": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flexitrichum": { + "p": "Flexitrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myristicaceae": { + "p": "Magnoliales", + "c": [ + "Bicuiba", + "Brochoneura", + "Cephalosphaera", + "Coelocaryon", + "Compsoneura", + "Endocomia", + "Gymnacranthera", + "Haematodendron", + "Horsfieldia", + "Iryanthera", + "Knema", + "Mauloutchia", + "Myristica", + "Osteophloeum", + "Otoba", + "Paramyristica", + "Pycnanthus", + "Scyphocephalium", + "Staudtia", + "Virola" + ], + "n": "nutmeg family", + "r": "FAMILY" + }, + "commelinids": { + "p": "Petrosaviidae", + "c": [ + "Arecales", + "Commelinales", + "Poales", + "Zingiberales" + ], + "n": "", + "r": "CLADE" + }, + "Eupomatiaceae": { + "p": "Magnoliales", + "c": [ + "Eupomatia" + ], + "n": "", + "r": "FAMILY" + }, + "Oreas": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Liliales": { + "p": "Petrosaviidae", + "c": [ + "Alstroemeriaceae", + "Colchicaceae", + "Campynemataceae", + "Smilacaceae", + "Corsiaceae", + "Liliaceae", + "Luzuriagaceae", + "Petermanniaceae", + "Philesiaceae", + "Ripogonaceae", + "Melanthiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Campylostelium": { + "p": "Ptychomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Frisvollia": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptychomitrium": { + "p": "Ptychomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ephemerella": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Octoblepharum": { + "p": "Calymperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryobeckettia": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kiaeria": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Himantandraceae": { + "p": "Magnoliales", + "c": [ + "Galbulimima" + ], + "n": "", + "r": "FAMILY" + }, + "Leucophanes": { + "p": "Calymperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptychomniaceae": { + "p": "Ptychomniales", + "c": [ + "Cladomnion", + "Cladomniopsis", + "Dichelodontium", + "Euptychium", + "Garovaglia", + "Glyphothecium", + "Hampeella", + "Ombronesus", + "Ptychomniella", + "Ptychomnion", + "Tetraphidopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Podophylloideae": { + "p": "Berberidaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Rhachithecium": { + "p": "Rhachitheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptychomitriopsis": { + "p": "Ptychomitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arctoa": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenoloma": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petrosaviales": { + "p": "Petrosaviidae", + "c": [ + "Petrosaviaceae" + ], + "n": "", + "r": "ORDER" + }, + "Berberidoideae": { + "p": "Berberidaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Pseudoblindia": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aulacomniaceae": { + "p": "Rhizogoniales", + "c": [ + "Aulacomnium", + "Hymenodontopsis", + "Mesochaete" + ], + "n": "", + "r": "FAMILY" + }, + "Pandanales": { + "p": "Petrosaviidae", + "c": [ + "Cyclanthaceae", + "Pandanaceae", + "Stemonaceae", + "Triuridaceae", + "Velloziaceae" + ], + "n": "", + "r": "ORDER" + }, + "Bruchia": { + "p": "Bruchiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coscinodon": { + "p": "Grimmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Makinoa": { + "p": "Makinoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physcomitrium": { + "p": "Funariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Syrrhopodon": { + "p": "Calymperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arthrocormus": { + "p": "Calymperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trochodendron": { + "p": "Trochodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucamptodon": { + "p": "Rhabdoweisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tridontium": { + "p": "Scouleriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meesiaceae": { + "p": "Splachnales", + "c": [ + "Amblyodon", + "Leptobryum", + "Meesia", + "Neomeesia", + "Paludella" + ], + "n": "", + "r": "FAMILY" + }, + "Buckinghamia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metzgeria subgen. Apometzgeria": { + "p": "Metzgeria", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Beaupreopsis": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beauprea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoditrichum": { + "p": "Pseudoditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruficaulis": { + "p": "Ruficaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conospermum": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catalepidia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenanthos": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gnetaceae": { + "p": "Gnetales", + "c": [ + "Gnetum" + ], + "n": "", + "r": "FAMILY" + }, + "Brabejum": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agastachys": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chrysoblastella": { + "p": "Pseudoditrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryobrittonia": { + "p": "Encalyptaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bellendena": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cenarrhenes": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Athertonia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austromuellera": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alloxylon": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Banksia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bleasdalea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carnarvonia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Encalypta": { + "p": "Encalyptaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cardwellia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aulax": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ephedraceae": { + "p": "Ephedrales", + "c": [ + "Ephedra" + ], + "n": "", + "r": "FAMILY" + }, + "Bryopteris": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Luisierella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glaucidioideae": { + "p": "Ranunculaceae", + "c": [ + "Glaucidium" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Crumia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypodontium": { + "p": "Hypodontiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichostomopsis": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dolotortula": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chionoloma": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lambertia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orites": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptocalypta": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macadamia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pararhexophyllum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diastella": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrapterum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stonea": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Floydia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xylomelum": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vexatorella": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnostomiella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptodontiella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microbryum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhacocarpaceae": { + "p": "Hedwigiales", + "c": [ + "Rhacocarpus" + ], + "n": "", + "r": "FAMILY" + }, + "Telopea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachycarpidium": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phascum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Willia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptotrichum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichostomum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnostomum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreocallis": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reimersia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Darlingia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Synaphea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptophascum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenostylium": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Timmiella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Faurea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrogonium": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Virotia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarconeurum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acaulon": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geheebia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chenia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hollandaea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bulbibarbula": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Persoonia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gyroweisia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymodon": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indopottia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomatia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helicia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gertrudiella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vinealobryum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Turrillia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Husnotiella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyophila": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Placospermum": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythrophyllopsis": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudosymblepharis": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Franklandia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kermadecia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paranomus": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Megahertzia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thalictroideae": { + "p": "Ranunculaceae", + "c": [ + "Aquilegia", + "Dichocarpum", + "Enemion", + "Isopyrum", + "Leptopyrum", + "Paraquilegia", + "Paropyrum", + "Semiaquilegia", + "Thalictrum", + "Urophysa" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Hakea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurochaete": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryoerythrophyllum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyophiladelphus": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petrophile": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spatalla": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptopogon": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mironia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hicksbeachia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pottia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aloinella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uleobryum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Archilejeunea": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triquetrella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sleumerodendron": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strangea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Weisiopsis": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isopogon": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ganguleea": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anoectangium": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plaubelia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrolejeunea": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucarpha": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Musgravea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhexophyllum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrolejeunea": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasjia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triunia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tortula": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Garnieria": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedwigiaceae": { + "p": "Hedwigiales", + "c": [ + "Braunia", + "Bryowijkia", + "Hedwigia", + "Hedwigidium", + "Pseudobraunia" + ], + "n": "", + "r": "FAMILY" + }, + "Caudalejeunea": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streblotrichum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Panopsis": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Embothrium": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptodontium": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Splachnobryum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pottiopsis": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symphionema": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aloina": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptobarbula": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dibrachiella": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scopelophila": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malagasia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tortella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenocarpus": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tuerckheimia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guerramontesia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Molendoa": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Knightia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stirlingia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helicophyllaceae": { + "p": "Hedwigiales", + "c": [ + "Helicophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Neorites": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aschisma": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orothamnus": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrastidoideae": { + "p": "Ranunculaceae", + "c": [ + "Hydrastis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Barbula": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryoxiphium": { + "p": "Bryoxiphiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dilobeia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossidium": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphalmium": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sorocephalus": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zanderella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Serruria": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gevuina": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bellibarbula": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnobarbula": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Finschia": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Opisthiolepis": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Syntrichia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxystegus": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saitobryum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cinclidotus": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucospermum": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucladium": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hennediella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stegonia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mimetes": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sagenotortula": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucadendron": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocrossidium": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachyneuropsis": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterygoneurum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Syntrichiadelphus": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyptopogon": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heliciopsis": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ranunculoideae": { + "p": "Ranunculaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Hymenostyliella": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothorites": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Weissia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roupala": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hilpertia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euplassa": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coptidoideae": { + "p": "Ranunculaceae", + "c": [ + "Coptis", + "Xanthorhiza" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Dialytrichia": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eidothea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grevillea": { + "p": "Proteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ephemerum": { + "p": "Pottiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oedipodiella": { + "p": "Gigaspermaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lorentziella": { + "p": "Gigaspermaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladopodanthus": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thuidiaceae": { + "p": "Hypnales", + "c": [ + "Abietinella", + "Boulaya", + "Bryonoguchia", + "Cyrto-hypnum", + "Fauriella", + "Pelekium", + "Rauiella", + "Thuidiopsis", + "Thuidium" + ], + "n": "", + "r": "FAMILY" + }, + "Pterobryaceae": { + "p": "Hypnales", + "c": [ + "Calyptothecium", + "Cryptogonium", + "Henicodium", + "Hildebrandtiella", + "Horikawaea", + "Jaegerina", + "Muellerobryum", + "Neolindbergia", + "Orthostichidium", + "Orthostichopsis", + "Penzigiella", + "Pireella", + "Pseudopterobryum", + "Pterobryon", + "Pterobryopsis", + "Renauldia", + "Rhabdodontium", + "Spiridentopsis", + "Symphysodon", + "Symphysodontella" + ], + "n": "", + "r": "FAMILY" + }, + "Fontinalaceae": { + "p": "Hypnales", + "c": [ + "Brachelyma", + "Dichelyma", + "Fontinalis" + ], + "n": "", + "r": "FAMILY" + }, + "Ptychanthus": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kingdonia": { + "p": "Circaeasteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhytidiaceae": { + "p": "Hypnales", + "c": [ + "Rhytidium" + ], + "n": "", + "r": "FAMILY" + }, + "Cryphaeaceae": { + "p": "Hypnales", + "c": [ + "Cryphaea", + "Cryphaeophilum", + "Cyptodon", + "Cyptodontopsis", + "Dendroalsia", + "Dendrocryphaea", + "Dendropogonella", + "Pilotrichopsis", + "Schoenobryum", + "Sphaerotheciella" + ], + "n": "", + "r": "FAMILY" + }, + "Pilopogon": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prionodontaceae": { + "p": "Hypnales", + "c": [ + "Prionodon" + ], + "n": "", + "r": "FAMILY" + }, + "Dicranodontium": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stereophyllaceae": { + "p": "Hypnales", + "c": [ + "Catagoniopsis", + "Entodontopsis", + "Eulacophyllum", + "Juratzkaea", + "Pilosium", + "Stereophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Chloranthus": { + "p": "Chloranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucobryum": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protoaongstroemia": { + "p": "Aongstroemiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lopholejeunea": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucodontaceae": { + "p": "Hypnales", + "c": [ + "Antitrichia", + "Dozya", + "Leucodon", + "Nogopterium", + "Pterogoniadelphus" + ], + "n": "", + "r": "FAMILY" + }, + "Gigaspermum": { + "p": "Gigaspermaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aongstroemia": { + "p": "Aongstroemiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anomodontaceae": { + "p": "Hypnales", + "c": [ + "Anomodon", + "Bryonorrisia", + "Chileobryon", + "Haplohymenium", + "Herpetineuron", + "Schwetschkeopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Bryohumbertia": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microcampylopus": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pylaisiadelphaceae": { + "p": "Hypnales", + "c": [ + "Aptychella", + "Bonnosukea", + "Clastobryellina", + "Clastobryum", + "Gammiella", + "Heterophyllium", + "Isocladiella", + "Isopterygium", + "Mastopoma", + "Microgammiella", + "Notohypnum", + "Orientobryum", + "Platygyrium", + "Pseudotrismegistia", + "Pterogonidium", + "Pylaisiadelpha", + "Taxithelium", + "Trismegistia", + "Trochophyllohypnum", + "Wijkia", + "Yakushimabryum", + "Brotherella" + ], + "n": "", + "r": "FAMILY" + }, + "Canellaceae": { + "p": "Canellales", + "c": [ + "Canella", + "Capsicodendron", + "Cinnamodendron", + "Cinnamosma", + "Pleodendron", + "Warburgia" + ], + "n": "wild cinnamon family", + "r": "FAMILY" + }, + "Chamaebryum": { + "p": "Gigaspermaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Circaeaster": { + "p": "Circaeasteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helodiaceae": { + "p": "Hypnales", + "c": [ + "Actinothuidium", + "Echinophyllum", + "Helodium" + ], + "n": "", + "r": "FAMILY" + }, + "Winteraceae": { + "p": "Canellales", + "c": [ + "Bubbia", + "Drimys", + "Exospermum", + "Pseudowintera", + "Takhtajania", + "Tasmannia", + "Zygogynum" + ], + "n": "", + "r": "FAMILY" + }, + "Callicladiaceae": { + "p": "Hypnales", + "c": [ + "Callicladium" + ], + "n": "", + "r": "FAMILY" + }, + "Stereodontaceae": { + "p": "Hypnales", + "c": [ + "Stereodon" + ], + "n": "", + "r": "FAMILY" + }, + "Gunnerales": { + "p": "Gunneridae", + "c": [ + "Gunneraceae", + "Myrothamnaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pleurophascum": { + "p": "Pleurophascaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tuzibeanthus": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedyosmum": { + "p": "Chloranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calliergonaceae": { + "p": "Hypnales", + "c": [ + "Calliergon", + "Hamatocaulis", + "Loeskypnum", + "Straminergon", + "Warnstorfia" + ], + "n": "", + "r": "FAMILY" + }, + "Hylocomiaceae": { + "p": "Hypnales", + "c": [ + "Hylocomiadelphus", + "Hylocomiastrum", + "Hylocomium", + "Leptocladiella", + "Leptohymenium", + "Loeskeobryum", + "Macrothamnium", + "Meteoriella", + "Neodolichomitra", + "Orontobryum", + "Pleurozium", + "Puiggariopsis", + "Rhytidiadelphus", + "Rhytidiopsis", + "Schofieldiella" + ], + "n": "", + "r": "FAMILY" + }, + "Scorpidiaceae": { + "p": "Hypnales", + "c": [ + "Hygrohypnella" + ], + "n": "", + "r": "FAMILY" + }, + "Entodontaceae": { + "p": "Hypnales", + "c": [ + "Entodon", + "Erythrodontium", + "Mesonodon" + ], + "n": "", + "r": "FAMILY" + }, + "Micromitrium": { + "p": "Micromitriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calcidicranella": { + "p": "Aongstroemiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhizogemma": { + "p": "Rhizogemmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachytheciaceae": { + "p": "Hypnales", + "c": [ + "Aerobryum", + "Aerolindigia", + "Brachytheciastrum", + "Brachythecium", + "Bryhnia", + "Bryoandersonia", + "Camptothecium", + "Cirriphyllum", + "Clasmatodon", + "Donrichardsia", + "Eriodon", + "Eurhynchiadelphus", + "Eurhynchiastrum", + "Eurhynchiella", + "Eurhynchiopsis", + "Eurhynchium", + "Frahmiella", + "Hedenaesia", + "Hedenasiastrum", + "Helicodontium", + "Homalotheciella", + "Homalothecium", + "Juratzkaeella", + "Kindbergia", + "Lindigia", + "Meteoridium", + "Microeurhynchium", + "Myuroclada", + "Okamuraea", + "Oxyrrhynchium", + "Palamocladium", + "Plasteurhynchium", + "Platyhypnidium", + "Pseudokindbergia", + "Pseudorhynchostegiella", + "Pseudoscleropodium", + "Remyella", + "Rhynchostegiella", + "Rhynchostegium", + "Sainthelenia", + "Sciuro-hypnum", + "Scleropodiopsis", + "Scleropodium", + "Scorpiurium", + "Squamidium", + "Steerecleus", + "Stenocarpidiopsis", + "Tomentypnum", + "Torrentaria", + "Trachybryum", + "Zelometeorium" + ], + "n": "", + "r": "FAMILY" + }, + "Lepyrodontaceae": { + "p": "Hypnales", + "c": [ + "Acrocladium", + "Lepyrodon" + ], + "n": "", + "r": "FAMILY" + }, + "Meteoriaceae": { + "p": "Hypnales", + "c": [ + "Aerobryidium", + "Aerobryopsis", + "Barbella", + "Barbellopsis", + "Chrysocladium", + "Cryptopapillaria", + "Diaphanodon", + "Dicladiella", + "Duthiella", + "Floribundaria", + "Lepyrodontopsis", + "Meteoriopsis", + "Meteorium", + "Neodicladiella", + "Neonoguchia", + "Papillaria", + "Pseudobarbella", + "Pseudospiridentopsis", + "Pseudotrachypus", + "Sinskea", + "Toloxis", + "Trachycladiella", + "Trachypodopsis", + "Trachypus" + ], + "n": "", + "r": "FAMILY" + }, + "Aulacopilum": { + "p": "Erpodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myuriaceae": { + "p": "Hypnales", + "c": [ + "Andoa", + "Ctenidium", + "Eumyurium", + "Myurium", + "Oedicladium", + "Palisadula" + ], + "n": "", + "r": "FAMILY" + }, + "Erpodium": { + "p": "Erpodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllogoniaceae": { + "p": "Hypnales", + "c": [ + "Phyllogonium" + ], + "n": "", + "r": "FAMILY" + }, + "Bartramiaceae": { + "p": "Bartramiales", + "c": [ + "Anacolia", + "Bartramia", + "Bartramidula", + "Breutelia", + "Conostomum", + "Fleischerobryum", + "Flowersia", + "Leiomela", + "Neosharpiella", + "Philonotis", + "Plagiopus", + "Quathlamba" + ], + "n": "", + "r": "FAMILY" + }, + "Plagiotheciaceae": { + "p": "Hypnales", + "c": [ + "Herzogiella", + "Isopterygiella", + "Isopterygiopsis", + "Longiella", + "Myurella", + "Orthothecium", + "Plagiothecium", + "Pseudotaxiphyllum", + "Redfearnia" + ], + "n": "", + "r": "FAMILY" + }, + "Fulfordianthus": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleuroziopsidaceae": { + "p": "Hypnales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Brothera": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Miyabeaceae": { + "p": "Hypnales", + "c": [ + "Bissetia", + "Homaliadelphus", + "Miyabea" + ], + "n": "", + "r": "FAMILY" + }, + "Campylopus": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypnaceae": { + "p": "Hypnales", + "c": [ + "Austrohondaella", + "Bardunovia", + "Bryocrumia", + "Buckiella", + "Calohypnum", + "Campylophyllopsis", + "Campylophyllum", + "Dacryophyllum", + "Elmeriobryum", + "Eurohypnum", + "Filibryum", + "Foreauella", + "Giraldiella", + "Glossadelphus", + "Hageniella", + "Hondaella", + "Horridohypnum", + "Hyocomium", + "Hypnum", + "Leiodontium", + "Mahua", + "Phyllodon", + "Platygyriella", + "Podperaea", + "Pseudohypnella", + "Ptilium", + "Rhacopilopsis", + "Sclerohypnum", + "Stereodontopsis", + "Taxiphyllopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Hymenophyton": { + "p": "Hymenophytaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ascarina": { + "p": "Chloranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachylomataceae": { + "p": "Hypnales", + "c": [ + "Trachyloma" + ], + "n": "", + "r": "FAMILY" + }, + "Hypnidae": { + "p": "homocostate pleurocarps", + "c": [], + "n": "", + "r": "SUBCLASS" + }, + "Trocholejeunea": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thysananthus": { + "p": "Ptychanthoideae", + "c": [ + "Thysananthus subgen. Mastigolejeunea", + "Thysananthus subgen. Thysananthus" + ], + "n": "", + "r": "GENUS" + }, + "Phaeolejeunea": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lembophyllaceae": { + "p": "Hypnales", + "c": [ + "Bestia", + "Camptochaete", + "Dolichomitra", + "Dolichomitriopsis", + "Fallaciella", + "Fifea", + "Isothecium", + "Lembophyllum", + "Looseria", + "Mawenzhangia", + "Neobarbella", + "Pilotrichella", + "Rigodium", + "Tripterocladium", + "Weymouthia" + ], + "n": "", + "r": "FAMILY" + }, + "Neckeraceae": { + "p": "Hypnales", + "c": [ + "Alleniella", + "Austrothamnium", + "Baldwiniella", + "Bryobuckia", + "Bryolawtonia", + "Caduciella", + "Circulifolium", + "Crassiphyllum", + "Cryptoleptodon", + "Curvicladium", + "Dannorrisia", + "Echinodiopsis", + "Exsertotheca", + "Handeliobryum", + "Himantocladium", + "Homalia", + "Homaliodendron", + "Hydrocryphaea", + "Isodrepanium", + "Metaneckera", + "Neckera", + "Neckeropsis", + "Noguchiodendron", + "Pendulothecium", + "Pengchengwua", + "Pinnatella", + "Planicladium", + "Porothamnium", + "Porotrichodendron", + "Porotrichopsis", + "Porotrichum", + "Pseudanomodon", + "Pseudoparaphysanthus", + "Shevockia", + "Thamnobryum", + "Thamnomalia", + "Touwia" + ], + "n": "", + "r": "FAMILY" + }, + "Venturiella": { + "p": "Erpodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catagoniaceae": { + "p": "Hypnales", + "c": [ + "Catagonium" + ], + "n": "", + "r": "FAMILY" + }, + "Leptodontaceae": { + "p": "Hypnales", + "c": [ + "Alsia", + "Forsstroemia", + "Leptodon", + "Taiwanobryum" + ], + "n": "", + "r": "FAMILY" + }, + "Regmatodontaceae": { + "p": "Hypnales", + "c": [ + "Regmatodon", + "Yunnanobryon" + ], + "n": "", + "r": "FAMILY" + }, + "Rigodiaceae": { + "p": "Hypnales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Schistomitrium": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taxiphyllaceae": { + "p": "Hypnales", + "c": [ + "Caribaeohypnum", + "Curviramea", + "Leptopterigynandrum", + "Mittenothamnium", + "Taxiphyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Jocheniaceae": { + "p": "Hypnales", + "c": [ + "Jochenia" + ], + "n": "", + "r": "FAMILY" + }, + "Orthorrhynchiaceae": { + "p": "Hypnales", + "c": [ + "Orthorrhynchium" + ], + "n": "", + "r": "FAMILY" + }, + "Atractylocarpus": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rutenbergiaceae": { + "p": "Hypnales", + "c": [ + "Neorutenbergia", + "Pseudocryphaea", + "Rutenbergia" + ], + "n": "", + "r": "FAMILY" + }, + "Schiffneriolejeunea": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcandra": { + "p": "Chloranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Verdoornianthus": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Costesia": { + "p": "Gigaspermaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sematophyllaceae": { + "p": "Hypnales", + "c": [ + "Acanthorrhynchium", + "Acroporium", + "Aptychopsis", + "Chionostomum", + "Clastobryella", + "Clastobryophilum", + "Colobodontium", + "Donnellia", + "Hydropogon", + "Hydropogonella", + "Macrohymenium", + "Meiothecium", + "Neacroporium", + "Papillidiopsis", + "Paranapiacabaea", + "Piloecium", + "Potamium", + "Pterogoniopsis", + "Radulina", + "Rhaphidorrhynchium", + "Rhaphidostichum", + "Schroeterella", + "Sematophyllum", + "Trichosteleum", + "Warburgiella" + ], + "n": "", + "r": "FAMILY" + }, + "Leskeaceae": { + "p": "Hypnales", + "c": [ + "Claopodium", + "Haplocladium", + "Hylocomiopsis", + "Ignatovia", + "Lescuraea", + "Leskea", + "Leskeadelphus", + "Leskeella", + "Lindbergia", + "Mamillariella", + "Pseudoleskea", + "Pseudoleskeella", + "Pseudoleskeopsis", + "Ptychodium", + "Rigodiadelphus", + "Rozea", + "Schwetschkea" + ], + "n": "", + "r": "FAMILY" + }, + "Neodicranella": { + "p": "Aongstroemiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amblystegiaceae": { + "p": "Hypnales", + "c": [ + "Amblystegium", + "Anacamptodon", + "Arvernella", + "Bryostreimannia", + "Campyliadelphus", + "Campylium", + "Conardia", + "Cratoneuron", + "Cratoneuropsis", + "Drepanium", + "Drepanocladus", + "Gradsteinia", + "Hygroamblystegium", + "Hygrohypnum", + "Hypnobartlettia", + "Jankuceraea", + "Kandaea", + "Larrainia", + "Leptodictyum", + "Limbella", + "Limnohypnum", + "Microamblystegium", + "Microhypnum", + "Orthotheciella", + "Palustriella", + "Platydictya", + "Platyhypnum", + "Platylomella", + "Pseudoamblystegium", + "Pseudocalliergon", + "Pseudocampylium", + "Sanionia", + "Sarmentypnum", + "Sasaokaea", + "Sciaromiopsis", + "Scorpidium", + "Vittia" + ], + "n": "", + "r": "FAMILY" + }, + "Dicranellopsis": { + "p": "Dicranellopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Theliaceae": { + "p": "Hypnales", + "c": [ + "Thelia" + ], + "n": "", + "r": "FAMILY" + }, + "Campylopodiella": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symphyodontaceae": { + "p": "Hypnales", + "c": [ + "Chaetomitriopsis", + "Chaetomitrium", + "Dimorphocladon", + "Rheoshevockia", + "Symphyodon", + "Trachythecium", + "Unclejackia" + ], + "n": "", + "r": "FAMILY" + }, + "Myriniaceae": { + "p": "Hypnales", + "c": [ + "Myrinia" + ], + "n": "", + "r": "FAMILY" + }, + "Acoraceae": { + "p": "Acorales", + "c": [ + "Acorus" + ], + "n": "sweet flag family", + "r": "FAMILY" + }, + "Ochrobryum": { + "p": "Leucobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fabroniaceae": { + "p": "Hypnales", + "c": [ + "Dimerodontium", + "Fabronia", + "Ischyrodon", + "Levierella", + "Rhizofabronia" + ], + "n": "", + "r": "FAMILY" + }, + "Marchesinia": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Climaciaceae": { + "p": "Hypnales", + "c": [ + "Climacium", + "Pleuroziopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Orthostichellaceae": { + "p": "Hypnales", + "c": [ + "Afrothamnium", + "Deslooveria", + "Dixonia", + "Orthostichella", + "Scabrellifolium" + ], + "n": "", + "r": "FAMILY" + }, + "Frullanoides": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echinodiaceae": { + "p": "Hypnales", + "c": [ + "Echinodium", + "Pseudomalia" + ], + "n": "", + "r": "FAMILY" + }, + "Pterigynandraceae": { + "p": "Hypnales", + "c": [ + "Habrodon", + "Heterocladium", + "Iwatsukiella", + "Pterigynandrum", + "Trachyphyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Pentapetalae": { + "p": "Gunneridae", + "c": [ + "asterids", + "Berberidopsidales", + "Caryophyllales", + "Dilleniales", + "rosids", + "Santalales", + "Saxifragales" + ], + "n": "", + "r": "CLADE" + }, + "Spruceanthus": { + "p": "Ptychanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pylaisiaceae": { + "p": "Hypnales", + "c": [ + "Aquilonium", + "Buckia", + "Calliergonella", + "Calliergonellopsis", + "Chryso-hypnum", + "Ectropothecium", + "Gollania", + "Homomallium", + "Pseudohygrohypnum", + "Pseudostereodon", + "Pylaisia", + "Roaldia", + "Vesicularia" + ], + "n": "", + "r": "FAMILY" + }, + "Wardia": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichodontium": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diobelonella": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Holomitriopsis": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Posidoniaceae": { + "p": "Alismatales", + "c": [ + "Posidonia" + ], + "n": "", + "r": "FAMILY" + }, + "Camptodontium": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scheuchzeriaceae": { + "p": "Alismatales", + "c": [ + "Scheuchzeria" + ], + "n": "", + "r": "FAMILY" + }, + "Braunfelsia": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Butomaceae": { + "p": "Alismatales", + "c": [ + "Butomus" + ], + "n": "flowering rush family", + "r": "FAMILY" + }, + "Hattorianthus": { + "p": "Moerckiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucamptodontopsis": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alismataceae": { + "p": "Alismatales", + "c": [ + "Albidella", + "Alisma", + "Astonia", + "Baldellia", + "Echinodorus", + "Burnatia", + "Butomopsis", + "Caldesia", + "Damasonium", + "Helanthium", + "Hydrocleys", + "Limnocharis", + "Limnophyton", + "Luronium", + "Ranalisma", + "Sagittaria", + "Wiesneria" + ], + "n": "water-plantain family", + "r": "FAMILY" + }, + "Moerckia": { + "p": "Moerckiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tofieldiaceae": { + "p": "Alismatales", + "c": [ + "Harperocallis", + "Isidrogalvia", + "Pleea", + "Tofieldia", + "Triantha" + ], + "n": "", + "r": "FAMILY" + }, + "Platyneuron": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranum": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucoloma": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthodicranum": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schliephackea": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylopodium": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polymerodon": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parisia": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zosteraceae": { + "p": "Alismatales", + "c": [ + "Heterozostera", + "Phyllospadix", + "Zostera" + ], + "n": "", + "r": "FAMILY" + }, + "Paraleucobryum": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Juncaginaceae": { + "p": "Alismatales", + "c": [ + "Cycnogeton", + "Tetroncium", + "Triglochin" + ], + "n": "arrow-grass family", + "r": "FAMILY" + }, + "Holomitrium": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cymodoceaceae": { + "p": "Alismatales", + "c": [ + "Amphibolis", + "Cymodocea", + "Halodule", + "Ruppia", + "Syringodium", + "Thalassodendron" + ], + "n": "", + "r": "FAMILY" + }, + "Hydrocharitaceae": { + "p": "Alismatales", + "c": [ + "Apalanthe", + "Blyxa", + "Egeria", + "Elodea", + "Enhalus", + "Halophila", + "Hydrilla", + "Hydrocharis", + "Lagarosiphon", + "Limnobium", + "Maidenia", + "Najas", + "Nechamandra", + "Ottelia", + "Stratiotes", + "Thalassia", + "Vallisneria" + ], + "n": "tape-grass family", + "r": "FAMILY" + }, + "Ruppiaceae": { + "p": "Alismatales", + "c": [], + "n": "ditch-grass family", + "r": "FAMILY" + }, + "Euptelea": { + "p": "Eupteleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudephemerum": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptotrichella": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Araceae": { + "p": "Alismatales", + "c": [ + "Aroideae", + "Calloideae", + "Gymnostachydoideae", + "Lasioideae", + "Lemnoideae", + "Orontioideae", + "Philodendroideae", + "Pothoideae", + "Schismatoglottidoideae" + ], + "n": "arum family", + "r": "FAMILY" + }, + "Cryptodicranum": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Potamogetonaceae": { + "p": "Alismatales", + "c": [ + "Althenia", + "Groenlandia", + "Lepilaena", + "Potamogeton", + "Pseudalthenia", + "Stuckenia", + "Zannichellia" + ], + "n": "horned pondweed family", + "r": "FAMILY" + }, + "Mesotus": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chorisodontium": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limnocharitaceae": { + "p": "Alismatales", + "c": [], + "n": "water-poppy family", + "r": "FAMILY" + }, + "Dicranella": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranoloma": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicnemon": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hygrodicranum": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sclerodontium": { + "p": "Dicranaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aponogetonaceae": { + "p": "Alismatales", + "c": [ + "Aponogeton" + ], + "n": "Cape-pondweed family", + "r": "FAMILY" + }, + "Maundiaceae": { + "p": "Alismatales", + "c": [ + "Maundia" + ], + "n": "", + "r": "FAMILY" + }, + "Cephalomanes": { + "p": "Trichomanoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cystoathyrium": { + "p": "Cystopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymoglossum": { + "p": "Trichomanoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichomanes": { + "p": "Trichomanoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Davallia": { + "p": "Davalliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malaifilix": { + "p": "Pteridryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vandenboschia": { + "p": "Trichomanoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteridrys": { + "p": "Pteridryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cystopteris": { + "p": "Cystopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenophyllum": { + "p": "Hymenophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnocarpium": { + "p": "Cystopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "x Cystocarpium": { + "p": "Cystopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyphlebium": { + "p": "Trichomanoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Draconopteris": { + "p": "Pteridryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acystopteris": { + "p": "Cystopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Humata": { + "p": "Davalliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paradavallodes": { + "p": "Davalliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callistopteris": { + "p": "Trichomanoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abrodictyum": { + "p": "Trichomanoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crepidomanes": { + "p": "Trichomanoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polydictyum": { + "p": "Pteridryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterogonium": { + "p": "Tectariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenasplenium": { + "p": "Aspleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenochlaenoideae": { + "p": "Blechnaceae", + "c": [ + "Salpichlaena", + "Stenochlaena", + "Telmatoblechnum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cystodium": { + "p": "Cystodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Woodsia": { + "p": "Woodsiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteridoideae": { + "p": "Pteridaceae", + "c": [ + "Actiniopteris", + "Anogramma", + "Austrogramme", + "Cerosora", + "Onychium", + "Cosentinia", + "Eriosorus", + "Gastoniella", + "Jamesonia", + "Neurocallis", + "Ochropteris", + "Oeosporangium", + "Pityrogramma", + "Pteris", + "Pterozonium", + "Syngramma", + "Taenitis", + "Tryonia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cryptogrammoideae": { + "p": "Pteridaceae", + "c": [ + "Coniogramme", + "Cryptogramma", + "Llavea" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Oleandra": { + "p": "Oleandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cionidium": { + "p": "Tectariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplaziopsis": { + "p": "Diplaziopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parkerioideae": { + "p": "Pteridaceae", + "c": [ + "Acrostichum", + "Ceratopteris" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Saccoloma": { + "p": "Saccolomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomariopsis": { + "p": "Lomariopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemidictyum": { + "p": "Hemidictyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheilanthoideae": { + "p": "Pteridaceae", + "c": [ + "Adiantopsis", + "Aleuritopteris", + "Argyrochosma", + "Aspidotis", + "Astrolepis", + "Bommeria", + "Calciphilopteris", + "Cheiloplecton", + "Cheilosoria", + "Pellaea", + "Notholaena", + "Doryopteris", + "Gaga", + "Hemionitis", + "Leptolepidium", + "Cheilanthes", + "Lytoneuron", + "Mildella", + "Myriopteris", + "Negripteris", + "Ormopteris", + "Paraceterach", + "Paragymnopteris", + "Parahemionitis", + "Pentagramma", + "Sinopteris", + "Trachypteris" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Woodwardioideae": { + "p": "Blechnaceae", + "c": [ + "Anchistea", + "Lorinseria", + "Woodwardia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Kuniwatsukia": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asplenium": { + "p": "Aspleniaceae", + "c": [], + "n": "spleenworts", + "r": "GENUS" + }, + "Nephrolepis": { + "p": "Nephrolepidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Athyrium": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homalosorus": { + "p": "Diplaziopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helminthostachys": { + "p": "Helminthostachyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Steenisioblechnum": { + "p": "Blechnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tectaria": { + "p": "Tectariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypoderris": { + "p": "Tectariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplazium": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deparia": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blechnoideae": { + "p": "Blechnaceae", + "c": [ + "Austroblechnum", + "Blechnidium", + "Blechnopsis", + "Blechnum", + "Brainea", + "Cleistoblechnum", + "Cranfillia", + "Diploblechnum", + "Doodia", + "Icarus", + "Lomaria", + "Lomaridium", + "Lomariocycas", + "Neoblechnum", + "Oceaniopteris", + "Parablechnum", + "Sadleria", + "Struthiopteris" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cornopteris": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lunathyrium": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triplophyllum": { + "p": "Tectariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisocampium": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dracoglossum": { + "p": "Lomariopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arthropteris": { + "p": "Tectariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vittarioideae": { + "p": "Pteridaceae", + "c": [ + "Adiantum", + "Ananthacorus", + "Antrophyopsis", + "Antrophyum", + "Haplopteris", + "Hecistopteris", + "Monogramma", + "Polytaenium", + "Radiovittaria", + "Rheopteris", + "Scoliosorus", + "Vaginularia", + "Vittaria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pteridoblechnum": { + "p": "Blechnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diellia": { + "p": "Aspleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclopeltis": { + "p": "Lomariopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryoathyrium": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Athyriopsis": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physematium": { + "p": "Woodsiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthiopteris": { + "p": "Saccolomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allantodia": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desmophlebium": { + "p": "Desmophlebiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blotiella": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucostegia": { + "p": "Hypodematiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thelypteridoideae": { + "p": "Thelypteridaceae", + "c": [ + "Abacopteris", + "Amauropelta", + "Amblovenatum", + "Ampelopteris", + "Chingia", + "Christella", + "Coryphopteris", + "Cyclogramma", + "Cyclosorus", + "Dictyocline", + "Glaphyropteridopsis", + "Goniopteris", + "Grypothrix", + "Hoiokula", + "Leptogramma", + "Menisciopsis", + "Meniscium", + "Menisorus", + "Mesophlebion", + "Mesopteris", + "Metathelypteris", + "Nannothelypteris", + "Oreopteris", + "Pakau", + "Parathelypteris", + "Pelazoneuron", + "Plesioneuron", + "Pneumatopteris", + "Pronephrium", + "Pseudocyclosorus", + "Reholttumia", + "Sphaerostephanos", + "Stegnogramma", + "Steiropteris", + "Strophocaulon", + "Thelypteris", + "Trigonospora" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Radula subgen. Dactyloradula": { + "p": "Radula", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Radula subgen. Odontoradula": { + "p": "Radula", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Matteuccia": { + "p": "Onocleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudathyrium": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loxogrammoideae": { + "p": "Polypodiaceae", + "c": [ + "Dictymia", + "Loxogramme" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Rhachidosorus": { + "p": "Rhachidosoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sceptridium": { + "p": "Botrychioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryopteridoideae": { + "p": "Dryopteridaceae", + "c": [ + "Arachniodes", + "Aspidium", + "Ctenitis", + "Cyrtomium", + "Dryopteris", + "Phanerophlebia", + "Polystichum", + "Pseudotectaria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Onoclea": { + "p": "Onocleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Botrychium": { + "p": "Botrychioideae", + "c": [], + "n": "grape ferns", + "r": "GENUS" + }, + "Botrypus": { + "p": "Botrychioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radula subgen. Radula": { + "p": "Radula", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Didymochlaena": { + "p": "Didymochlaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grammitidoideae": { + "p": "Polypodiaceae", + "c": [ + "Acrosorus", + "Adenophorus", + "Aenigmatogrammitis", + "Alansmia", + "Archigrammitis", + "Ascogrammitis", + "Boonkerdia", + "Calligrammitis", + "Calymmodon", + "Ceradenia", + "Chrysogrammitis", + "Cochlidium", + "Ctenopterella", + "Ctenopteris", + "Dasygrammitis", + "Devolia", + "Enterosora", + "Galactodenia", + "Grammitastrum", + "Grammitis", + "Howeogrammitis", + "Lellingeria", + "Leucotrichum", + "Lomaphlebia", + "Melpomene", + "Micropolypodium", + "Moranopteris", + "Mycopteris", + "Nanogrammitis", + "Notogrammitis", + "Oreogrammitis", + "Parrisia", + "Prosaptia", + "Radiogrammitis", + "Rouhania", + "Scleroglossum", + "Stenogrammitis", + "Terpsichore", + "Thalassogrammitis", + "Themelium", + "Tomophyllum", + "Xiphopterella", + "Xiphopteris", + "Zygophlebia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Lonchitis": { + "p": "Lonchitidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radula subgen. Volutoradula": { + "p": "Radula", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Coptidipteris": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platycerioideae": { + "p": "Polypodiaceae", + "c": [ + "Hovenkampia", + "Pyrrosia", + "Platycerium" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Ophioglossum": { + "p": "Ophioglossoideae", + "c": [], + "n": "adder's-tongue ferns", + "r": "GENUS" + }, + "Drynarioideae": { + "p": "Polypodiaceae", + "c": [ + "Aglaomorpha", + "Arthromeris", + "Drynaria", + "Gymnogrammitis", + "Phymatopteris", + "Polypodiopteris", + "Selliguea" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Microsoroideae": { + "p": "Polypodiaceae", + "c": [ + "Bosmania", + "Colysis", + "Dendroconche", + "Goniophlebium", + "Lecanopteris", + "Lemmaphyllum", + "Lepidomicrosorium", + "Lepisorus", + "Leptochilus", + "Microsorum", + "Neocheiropteris", + "Neolepisorus", + "Platygyria", + "Thylacopteris", + "Tricholepidium", + "Zealandia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Onocleopsis": { + "p": "Onocleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phegopteridoideae": { + "p": "Thelypteridaceae", + "c": [ + "Macrothelypteris", + "Phegopteris", + "Pseudophegopteris" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Radula subgen. Amentuloradula": { + "p": "Radula", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Ophioderma": { + "p": "Ophioglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elaphoglossoideae": { + "p": "Dryopteridaceae", + "c": [ + "Arthrobotrya", + "Bolbitis", + "Lastreopsis", + "Lomagramma", + "Megalastrum", + "Mickelia", + "Parapolystichum", + "Pleocnemia", + "Rumohra", + "Teratophyllum", + "Elaphoglossum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cheiroglossa": { + "p": "Ophioglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radula subgen. Metaradula": { + "p": "Radula", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polypodioideae": { + "p": "Polypodiaceae", + "c": [ + "Adetogramma", + "Campyloneurum", + "Microgramma", + "Neurodium", + "Niphidium", + "Pecluma", + "Phlebodium", + "Pleopeltis", + "Pleurosoriopsis", + "Polypodium", + "Serpocaulon" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Radula subgen. Cladoradula": { + "p": "Radula", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Hypodematium": { + "p": "Hypodematiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentarhizidium": { + "p": "Onocleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocystopteris": { + "p": "Athyriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polybotryoideae": { + "p": "Dryopteridaceae", + "c": [ + "Cyclodium", + "Maxonia", + "Olfersia", + "Polybotrya", + "Polystichopsis", + "Stigmatopteris", + "Trichoneuron" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Japanobotrychium": { + "p": "Botrychioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nesolindsaea": { + "p": "Lindsaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteridium": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pisanoa": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lindsaea": { + "p": "Lindsaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Histiopteris": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Denotarisia": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dennstaedtia": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphenomeris": { + "p": "Lindsaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "x Lindsaeosoria": { + "p": "Lindsaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Syzygiella": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vanaea": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oenotrichia": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osmolindsaea": { + "p": "Lindsaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hiya": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roivainenia": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Odontosoria": { + "p": "Lindsaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monachosorum": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ormoloma": { + "p": "Lindsaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jamesoniella": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cuspidatula": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tapeinidium": { + "p": "Lindsaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anomacaulis": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizoloma": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptolepia": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microlepia": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protosyzygiella": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothostrepta": { + "p": "Jamesonielloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paesia": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypolepis": { + "p": "Dennstaedtiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mankyua": { + "p": "Mankyuoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudomarsupidium": { + "p": "Adelanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solenostoma subgen. Metasolenostoma": { + "p": "Solenostoma", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Wettsteinia": { + "p": "Adelanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solenostoma subgen. Solenostoma": { + "p": "Solenostoma", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Solenostoma subgen. Eucalyx": { + "p": "Solenostoma", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Adelanthus": { + "p": "Adelanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solenostoma subgen. Plectocolea": { + "p": "Solenostoma", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Paracromastigum": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kurzia": { + "p": "Lembidioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neogrollea": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arachniopsis": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protocephalozia": { + "p": "Protocephalozioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isolembidium": { + "p": "Lembidioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Megalembidium": { + "p": "Lembidioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zoopsidella": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monodactylopsis": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amazoopsis": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrolembidium": { + "p": "Lembidioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psiloclada": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zoopsis": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyalolepidozia": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocephalozia": { + "p": "Lembidioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mytilopsis": { + "p": "Micropterygioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Odontoseries": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micropterygium": { + "p": "Micropterygioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteropsiella": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lembidium": { + "p": "Lembidioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hygrolembidium": { + "p": "Lembidioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Telaranea": { + "p": "Zoopsidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllostemonodaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laurus": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mastigopelma": { + "p": "Bazzanioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aspidostemon": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parasassafras": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypopterygium": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hexapora": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mezilaurus": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ocotea": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrocyathophorum": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neolepidozia": { + "p": "Lepidozioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alseodaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Endiandra": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratozamia": { + "p": "Zamiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cinnadenia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dodecadenia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptocarya": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mocinnodaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lindera": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceramanus": { + "p": "Lepidozioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aniba": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catharomnion": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrozamia": { + "p": "Zamiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anaueria": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurothyrium": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptostomum": { + "p": "Leptostomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dehaasia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alseodaphnopsis": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kubitzkia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyathophorum": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodostemonodaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bazzania": { + "p": "Bazzanioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pulchrinodus": { + "p": "Pulchrinodaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neolitsea": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drucella": { + "p": "Drucelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidozamia": { + "p": "Zamiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dahlgrenodendron": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mespilodaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lopidium": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arbusculohypopterygium": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorocardium": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Iteadaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothaphoebe": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypodaphnis": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zamia": { + "p": "Zamiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diastaloba II": { + "p": "Frullania subgen. Diastaloba", + "c": [], + "n": "", + "r": "CLADE" + }, + "Dioon": { + "p": "Zamiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beilschmiedia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenodaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paraia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrohypopterygium": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nectandra": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diastaloba III": { + "p": "Frullania subgen. Diastaloba", + "c": [], + "n": "", + "r": "CLADE" + }, + "Dicypellium": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apollonias": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neocinnamomum": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Persea": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricholepidozia": { + "p": "Lepidozioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eusideroxylon": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canalohypopterygium": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cassytha": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Potoxylon": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sextonia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Potameia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stangeria": { + "p": "Zamiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Litsea": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sassafras": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cinnamomum": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phoebe": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidozia": { + "p": "Lepidozioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinodaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kuloa": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Encephalartos": { + "p": "Zamiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diastaloba IV": { + "p": "Frullania subgen. Diastaloba", + "c": [], + "n": "", + "r": "CLADE" + }, + "Acromastigum": { + "p": "Bazzanioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caryodaphnopsis": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Licaria": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinopora": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Machilus": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Endlicheria": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Povedadaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ravensara": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diastaloba I": { + "p": "Frullania subgen. Diastaloba", + "c": [], + "n": "", + "r": "CLADE" + }, + "Aiouea": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyathophorella": { + "p": "Hypopterygiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Damburneya": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microcycas": { + "p": "Zamiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codonoblepharon": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptodontiopsis": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Groutiella": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nemuaron": { + "p": "Atherospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lewinskya": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schlotheimia": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Doryphora": { + "p": "Atherospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asarum": { + "p": "Asaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prosopanche": { + "p": "Hydnoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthotrichum": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Matteria": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Umbellularia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plenogemma": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrocoma": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triadodaphne": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stoneobryum": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nyholmiella": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthomitrium": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saruma": { + "p": "Asaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Daphnandra": { + "p": "Atherospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laurelia": { + "p": "Atherospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pulvigera": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Syndiclis": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiomitrium": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sehnemobryum": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desmotheca": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cardotiella": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentastichella": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chimonanthus": { + "p": "Calycanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryadodaphne": { + "p": "Atherospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urbanodendron": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Muelleriella": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryodixonia": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leratia": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Yasunia": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zygodon": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calycanthus": { + "p": "Calycanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Australoria": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydnora": { + "p": "Hydnoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurorthotrichum": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinosassafras": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laureliopsis": { + "p": "Atherospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ulota": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catoscopium": { + "p": "Catoscopiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Williamodendron": { + "p": "Lauraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drummondia": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macromitrium": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atlantichella": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atherosperma": { + "p": "Atherospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryomaltaea": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphidium": { + "p": "Orthotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Idiospermoideae": { + "p": "Calycanthaceae", + "c": [ + "Idiospermum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Trachyxiphium": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mnium": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cinclidium": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachycystis": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glaucium": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ancistrodes": { + "p": "Saulomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucolepis": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cathcartia": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllodrepanium": { + "p": "Phyllodrepaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyptrochaeta": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podocarpaceae": { + "p": "Araucariales", + "c": [ + "Acmopyle", + "Afrocarpus", + "Dacrycarpus", + "Dacrydium", + "Falcatifolium", + "Halocarpus", + "Lagarostrobos", + "Lepidothamnus", + "Manoao", + "Microcachrys", + "Microstrobos", + "Nageia", + "Parasitaxus", + "Pectinopitys", + "Pherosphaera", + "Phyllocladus", + "Podocarpus", + "Prumnopitys", + "Retrophyllum", + "Saxegothaea", + "Sundacarpus" + ], + "n": "", + "r": "FAMILY" + }, + "Papaver": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crosbya": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roemeria": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meconopsis": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossomitrium": { + "p": "Hookeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterobryella": { + "p": "Pterobryellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leskeodon": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chelidonium": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Achrophyllum": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Distichophyllidium": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eomecon": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hookeriopsis": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coreanomecon": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Welwitschia": { + "p": "Welwitschiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hernandia": { + "p": "Hernandiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amblytropis": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hazomalania": { + "p": "Hernandiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthomnion": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diploneuron": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhizomnium": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brymela": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sparattanthelium": { + "p": "Hernandiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sciadocladus": { + "p": "Pterobryellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Manekia": { + "p": "Piperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stylomecon": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saururus": { + "p": "Saururaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenodictyon": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Daltonia": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Braithwaitea": { + "p": "Braithwaiteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranostigma": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siparuna": { + "p": "Siparunaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Powellia": { + "p": "Racopilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiomnium": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Argemone": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Epipterygium": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pohlia": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudobryum": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metadistichophyllum": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zippelia": { + "p": "Piperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Verhuellia": { + "p": "Piperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ephemeropsis": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Illigera": { + "p": "Hernandiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callicostella": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hookeria": { + "p": "Hookeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemiragis": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyrtomnium": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gyrocarpus": { + "p": "Hernandiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinodontium": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trianaeopiper": { + "p": "Piperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platystigma": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adelothecium": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendromecon": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anemopsis": { + "p": "Saururaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canbya": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platystemon": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aristolochia": { + "p": "Aristolochiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stylophorum": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macleaya": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pararistolochia": { + "p": "Aristolochiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beeveria": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philophyllum": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meconella": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oceanopapaver": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neohypnella": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hunnemannia": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callicostellopsis": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnotheca": { + "p": "Saururaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Distichophyllum": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizymenium": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilotrichidium": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypnella": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arctomecon": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thamniopsis": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenodesmus": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylomecon": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mniomalia": { + "p": "Phyllodrepaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryobrothera": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thottea": { + "p": "Aristolochiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Romneya": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Araucariaceae": { + "p": "Araucariales", + "c": [ + "Agathis", + "Araucaria", + "Wollemia" + ], + "n": "Norfolk island pine family", + "r": "FAMILY" + }, + "Peperomia": { + "p": "Piperaceae", + "c": [], + "n": "radiator plants", + "r": "GENUS" + }, + "Eschscholzia": { + "p": "Eschscholzioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glossocalyx": { + "p": "Siparunaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gomortega": { + "p": "Gomortegaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Holostylis": { + "p": "Aristolochiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macropiper": { + "p": "Piperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mielichhoferia": { + "p": "Mniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sauloma": { + "p": "Saulomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Piper": { + "p": "Piperaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bocconia": { + "p": "Papaveroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sanguinaria": { + "p": "Papaveroideae", + "c": [], + "n": "bloodroots", + "r": "GENUS" + }, + "Lepidopilidium": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyrtopodendron": { + "p": "Pterobryellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Houttuynia": { + "p": "Saururaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Racopilum": { + "p": "Racopilaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilotrichum": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Benitotania": { + "p": "Daltoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidopilum": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclodictyon": { + "p": "Pilotrichaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dactylicapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptostomopsis": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptocapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macropeplus": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lamprocapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rosulabryum": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rupicapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osculatia": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kibaropsis": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrotorus": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplodontium": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedycarya": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kibara": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tambourissa": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudofumaria": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachymenium": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fumariola": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adlumia": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Matthaea": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anomobryum": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palmeria": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austromatthaea": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corydalis": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemmantia": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pendressia": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grazielanthus": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryum": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schimperobryum": { + "p": "Schimperobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypecoum": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ehrendorferia": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gemmabryum": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roellobryon": { + "p": "Roellobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decarydendron": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xymalos": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ephippiandra": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiobryum": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platycapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hennecartia": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Faika": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteridophyllum": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Levieria": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ichtyoselmis": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wilkiea": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acidodontium": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicentra": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodobryum": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lactoris": { + "p": "Lactoridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pinaceae": { + "p": "Pinales", + "c": [ + "Cathaya", + "Cedrus", + "Abies", + "Tsuga", + "Keteleeria", + "Larix", + "Nothotsuga", + "Picea", + "Pinus", + "Pseudolarix", + "Pseudotsuga" + ], + "n": "pine family", + "r": "FAMILY" + }, + "Cysticapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcocapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Discocapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Capnoides": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hortonia": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrasynandra": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Imbribryum": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kairoa": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Steganthera": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptychostomum": { + "p": "Bryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peumus": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratocapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fumaria": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trigonocapnos": { + "p": "Fumarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mollinedia": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monimia": { + "p": "Monimiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Franciella": { + "p": "Hypnodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyacinthaceae": { + "p": "Asparagales", + "c": [ + "Hyacinthoideae", + "Ornithogaloideae", + "Oziroeoideae", + "Urgineoideae" + ], + "n": "hyacinth family", + "r": "FAMILY" + }, + "Guamia": { + "p": "Annonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Annonoideae": { + "p": "Annonaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Blandfordiaceae": { + "p": "Asparagales", + "c": [ + "Blandfordia" + ], + "n": "", + "r": "FAMILY" + }, + "Ixioliriaceae": { + "p": "Asparagales", + "c": [ + "Ixiolirion" + ], + "n": "", + "r": "FAMILY" + }, + "Laxmanniaceae": { + "p": "Asparagales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Liriodendron": { + "p": "Magnoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucomium": { + "p": "Leucomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orchidaceae": { + "p": "Asparagales", + "c": [ + "Apostasioideae", + "Codonorchidoideae", + "Cypripedioideae", + "Epidendroideae", + "Orchidoideae", + "Vanilloideae" + ], + "n": "orchid family", + "r": "FAMILY" + }, + "Taxaceae": { + "p": "Cupressales", + "c": [ + "Amentotaxus", + "Austrotaxus", + "Cephalotaxus", + "Pseudotaxus", + "Taxus", + "Torreya" + ], + "n": "yew family", + "r": "FAMILY" + }, + "Ambavioideae": { + "p": "Annonaceae", + "c": [ + "Ambavia", + "Cananga", + "Cleistopholis", + "Cyathocalyx", + "Drepananthus", + "Lettowianthus", + "Meiocarpidium", + "Mezzettia", + "Tetrameranthus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Mniodendron": { + "p": "Hypnodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Touwiodendron": { + "p": "Hypnodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agavaceae": { + "p": "Asparagales", + "c": [], + "n": "agave family", + "r": "FAMILY" + }, + "Cyrtopus": { + "p": "Hypnodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypnodendron": { + "p": "Hypnodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asteliaceae": { + "p": "Asparagales", + "c": [ + "Astelia", + "Collospermum", + "Milligania", + "Neoastelia" + ], + "n": "", + "r": "FAMILY" + }, + "Asphodelaceae": { + "p": "Asparagales", + "c": [ + "Asphodeloideae", + "Hemerocallidoideae", + "Xanthorrhoeoideae" + ], + "n": "aloe family", + "r": "FAMILY" + }, + "Lanariaceae": { + "p": "Asparagales", + "c": [ + "Lanaria" + ], + "n": "", + "r": "FAMILY" + }, + "Malmeoideae": { + "p": "Annonaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Xeronemataceae": { + "p": "Asparagales", + "c": [ + "Xeronema" + ], + "n": "", + "r": "FAMILY" + }, + "Asparagaceae": { + "p": "Asparagales", + "c": [ + "Agavoideae", + "Aphyllanthoideae", + "Asparagoideae", + "Brodiaeoideae", + "Lomandroideae", + "Myrsiphyllum", + "Nolinoideae" + ], + "n": "asparagus family", + "r": "FAMILY" + }, + "Iridaceae": { + "p": "Asparagales", + "c": [ + "Aristeoideae", + "Crocoideae", + "Geosiridoideae", + "Iridoideae", + "Isophysidoideae", + "Nivenioideae", + "Patersonioideae", + "x Pardancanda" + ], + "n": "iris family", + "r": "FAMILY" + }, + "Sciadopityaceae": { + "p": "Cupressales", + "c": [ + "Sciadopitys" + ], + "n": "umbrella-pine family", + "r": "FAMILY" + }, + "Tecophilaeaceae": { + "p": "Asparagales", + "c": [ + "Conanthera", + "Cyanastrum", + "Cyanella", + "Eremiolirion", + "Kabuyea", + "Odontostomum", + "Tecophilaea", + "Walleria", + "Zephyra" + ], + "n": "", + "r": "FAMILY" + }, + "Nartheciaceae": { + "p": "Dioscoreales", + "c": [ + "Aletris", + "Lophiola", + "Metanarthecium", + "Narthecium", + "Nietneria" + ], + "n": "", + "r": "FAMILY" + }, + "Chieniodendron": { + "p": "Annonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bowenia": { + "p": "Cycadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Michelia": { + "p": "Magnoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypoxidaceae": { + "p": "Asparagales", + "c": [ + "Curculigo", + "Empodium", + "Hypoxidia", + "Hypoxis", + "Molineria", + "Neofriedmannia", + "Pauridia", + "Rhodohypoxis", + "Saniella", + "Sinocurculigo", + "Spiloxene" + ], + "n": "", + "r": "FAMILY" + }, + "Themidaceae": { + "p": "Asparagales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Rhynchostegiopsis": { + "p": "Leucomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dioscoreaceae": { + "p": "Dioscoreales", + "c": [ + "Dioscorea", + "Rajania", + "Stenomeris", + "Trichopus" + ], + "n": "yam family", + "r": "FAMILY" + }, + "Taccaceae": { + "p": "Dioscoreales", + "c": [ + "Tacca" + ], + "n": "", + "r": "FAMILY" + }, + "Mitrella": { + "p": "Annonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendro-hypnum": { + "p": "Hypnodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bescherellia": { + "p": "Hypnodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrastichium": { + "p": "Leucomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amaryllidaceae": { + "p": "Asparagales", + "c": [ + "Agapanthoideae", + "Amaryllidoideae", + "Cearanthes", + "Allioideae" + ], + "n": "amaryllis family", + "r": "FAMILY" + }, + "Spiridens": { + "p": "Hypnodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cycas": { + "p": "Cycadaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruscaceae": { + "p": "Asparagales", + "c": [], + "n": "lily-of-the-valley family", + "r": "FAMILY" + }, + "Doryanthaceae": { + "p": "Asparagales", + "c": [ + "Doryanthes" + ], + "n": "", + "r": "FAMILY" + }, + "Hemerocallidaceae": { + "p": "Asparagales", + "c": [], + "n": "day-lily family", + "r": "FAMILY" + }, + "Anaxagoreoideae": { + "p": "Annonaceae", + "c": [ + "Anaxagorea" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cupressaceae": { + "p": "Cupressales", + "c": [ + "Actinostrobus", + "Athrotaxis", + "Austrocedrus", + "Callitris", + "Callitropsis", + "Calocedrus", + "Chamaecyparis", + "Cunninghamia", + "Cryptomeria", + "Cupressus", + "Diselma", + "Fitzroya", + "Fokienia", + "Glyptostrobus", + "Hesperocyparis", + "Juniperus", + "Libocedrus", + "Metasequoia", + "Microbiota", + "Neocallitropsis", + "Papuacedrus", + "Pilgerodendron", + "Platycladus", + "Sequoia", + "Sequoiadendron", + "Taiwania", + "Taxodium", + "Tetraclinis", + "Thuja", + "Thujopsis", + "Widdringtonia", + "x Hesperotropsis", + "Xanthocyparis" + ], + "n": "cypress family", + "r": "FAMILY" + }, + "Boryaceae": { + "p": "Asparagales", + "c": [ + "Alania", + "Borya" + ], + "n": "", + "r": "FAMILY" + }, + "Thismiaceae": { + "p": "Dioscoreales", + "c": [ + "Oxygyne", + "Thismia" + ], + "n": "", + "r": "FAMILY" + }, + "Magnolia": { + "p": "Magnoliaceae", + "c": [ + "Magnolia subgen. Manglietia" + ], + "n": "", + "r": "GENUS" + }, + "Burmanniaceae": { + "p": "Dioscoreales", + "c": [ + "Afrothismia", + "Apteria", + "Burmannia", + "Campylosiphon", + "Cymbocarpa", + "Dictyostega", + "Geomitra", + "Gymnosiphon", + "Haplothismia", + "Hexapterella", + "Miersiella", + "Tiputinia" + ], + "n": "", + "r": "FAMILY" + }, + "Leptotheca": { + "p": "Orthodontiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sargentodoxa": { + "p": "Sargentodoxoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthodontopsis": { + "p": "Orthodontiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenodon": { + "p": "Orthodontiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthodontium": { + "p": "Orthodontiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Degeneria": { + "p": "Degeneriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paramyristica": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Voitia": { + "p": "Splachnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ginkgo": { + "p": "Ginkgoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptopodium": { + "p": "Rhizogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Staudtia": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philesiaceae": { + "p": "Liliales", + "c": [ + "Philesia" + ], + "n": "", + "r": "FAMILY" + }, + "Brochoneura": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ripogonaceae": { + "p": "Liliales", + "c": [ + "Ripogonum" + ], + "n": "", + "r": "FAMILY" + }, + "Campynemataceae": { + "p": "Liliales", + "c": [ + "Campynema", + "Campynemanthe" + ], + "n": "", + "r": "FAMILY" + }, + "Gymnacranthera": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corsiaceae": { + "p": "Liliales", + "c": [ + "Arachnitis", + "Corsia" + ], + "n": "", + "r": "FAMILY" + }, + "Haematodendron": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alstroemeriaceae": { + "p": "Liliales", + "c": [ + "Alstroemeria", + "Bomarea", + "Drymophila", + "Leontochir", + "Luzuriaga" + ], + "n": "", + "r": "FAMILY" + }, + "Knema": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aplodon": { + "p": "Splachnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bicuiba": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colchicaceae": { + "p": "Liliales", + "c": [ + "Androcymbium", + "Baeometra", + "Burchardia", + "Camptorrhiza", + "Gloriosa", + "Colchicum", + "Disporum", + "Hexacyrtis", + "Iphigenia", + "Kuntheria", + "Merendera", + "Onixotis", + "Ornithoglossum", + "Prosartes", + "Schelhammera", + "Tripladenia", + "Uvularia", + "Wurmbea" + ], + "n": "autumn-crocus family", + "r": "FAMILY" + }, + "Iryanthera": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poales": { + "p": "commelinids", + "c": [ + "Bromeliaceae", + "Typhaceae", + "Ecdeiocoleaceae", + "Flagellariaceae", + "Poaceae", + "Joinvilleaceae", + "Mayacaceae", + "Eriocaulaceae", + "Rapateaceae", + "Restionaceae", + "Juncaceae", + "Cyperaceae", + "Thurniaceae", + "Xyridaceae" + ], + "n": "", + "r": "ORDER" + }, + "Eupomatia": { + "p": "Eupomatiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Smilacaceae": { + "p": "Liliales", + "c": [ + "Heterosmilax", + "Lapageria", + "Smilax" + ], + "n": "catbrier famly", + "r": "FAMILY" + }, + "Scyphocephalium": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Endocomia": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melanthiaceae": { + "p": "Liliales", + "c": [ + "Amianthium", + "Anticlea", + "Chamaelirium", + "Chionographis", + "Daiswa", + "Helonias", + "Heloniopsis", + "Kinugasa", + "Paris", + "Pseudotrillium", + "Schoenocaulon", + "Scoliopus", + "Stenanthium", + "Toxicoscordion", + "Trillidium", + "Trillium", + "Veratrum", + "Xerophyllum", + "Ypsilandra", + "Zigadenus" + ], + "n": "trillium family", + "r": "FAMILY" + }, + "Splachnum": { + "p": "Splachnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhizogonium": { + "p": "Rhizogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osteophloeum": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tayloria": { + "p": "Splachnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Virola": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arecales": { + "p": "commelinids", + "c": [ + "Dasypogonaceae", + "Arecaceae" + ], + "n": "", + "r": "ORDER" + }, + "Commelinales": { + "p": "commelinids", + "c": [ + "Haemodoraceae", + "Hanguanaceae", + "Philydraceae", + "Commelinaceae", + "Pontederiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Zingiberales": { + "p": "commelinids", + "c": [ + "Musaceae", + "Strelitziaceae", + "Cannaceae", + "Costaceae", + "Zingiberaceae", + "Heliconiaceae", + "Lowiaceae", + "Marantaceae" + ], + "n": "", + "r": "ORDER" + }, + "Mauloutchia": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myristica": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Compsoneura": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calomnion": { + "p": "Rhizogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrrhobryum": { + "p": "Rhizogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petermanniaceae": { + "p": "Liliales", + "c": [ + "Petermannia" + ], + "n": "", + "r": "FAMILY" + }, + "Luzuriagaceae": { + "p": "Liliales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Coelocaryon": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Otoba": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pycnanthus": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Horsfieldia": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalosphaera": { + "p": "Myristicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachymitrion": { + "p": "Splachnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetraplodon": { + "p": "Splachnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Liliaceae": { + "p": "Liliales", + "c": [ + "Amana", + "Calochortus", + "Cardiocrinum", + "Clintonia", + "Erythronium", + "Fritillaria", + "Gagea", + "Lilium", + "Lloydia", + "Medeola", + "Nomocharis", + "Notholirion", + "Sandersonia", + "Tricyrtis", + "Tulipa" + ], + "n": "lily family", + "r": "FAMILY" + }, + "Goniobryum": { + "p": "Rhizogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gnetum": { + "p": "Gnetaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladomniopsis": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptychomnion": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichelodontium": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petrosaviaceae": { + "p": "Petrosaviales", + "c": [ + "Japonolirion", + "Petrosavia" + ], + "n": "", + "r": "FAMILY" + }, + "Cladomnion": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stemonaceae": { + "p": "Pandanales", + "c": [ + "Croomia", + "Pentastemona", + "Stemona", + "Stichoneuron" + ], + "n": "", + "r": "FAMILY" + }, + "Euptychium": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptobryum": { + "p": "Meesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neomeesia": { + "p": "Meesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galbulimima": { + "p": "Himantandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Garovaglia": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aulacomnium": { + "p": "Aulacomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclanthaceae": { + "p": "Pandanales", + "c": [ + "Asplundia", + "Carludovica", + "Chorigyne", + "Cyclanthus", + "Dianthoveus", + "Dicranopygium", + "Evodianthus", + "Ludovia", + "Schultesiophytum", + "Sphaeradenia", + "Stelestylis", + "Thoracocarpus" + ], + "n": "panama-hat family", + "r": "FAMILY" + }, + "Glyphothecium": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hampeella": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenodontopsis": { + "p": "Aulacomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paludella": { + "p": "Meesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesochaete": { + "p": "Aulacomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetraphidopsis": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amblyodon": { + "p": "Meesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meesia": { + "p": "Meesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ombronesus": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Velloziaceae": { + "p": "Pandanales", + "c": [ + "Acanthochlamys", + "Aylthonia", + "Barbacenia", + "Barbaceniopsis", + "Burlemarxia", + "Nanuza", + "Pleurostima", + "Talbotia", + "Vellozia", + "Xerophyta" + ], + "n": "", + "r": "FAMILY" + }, + "Triuridaceae": { + "p": "Pandanales", + "c": [ + "Andruris", + "Kihansia", + "Kupea", + "Lacandonia", + "Sciaphila", + "Seychellaria", + "Soridium", + "Triuris" + ], + "n": "", + "r": "FAMILY" + }, + "Pandanaceae": { + "p": "Pandanales", + "c": [ + "Benstonea", + "Freycinetia", + "Martellidendron", + "Sararanga", + "Pandanus" + ], + "n": "screw-pine family", + "r": "FAMILY" + }, + "Ptychomniella": { + "p": "Ptychomniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glaucidium": { + "p": "Glaucidioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ephedra": { + "p": "Ephedraceae", + "c": [], + "n": "joint firs", + "r": "GENUS" + }, + "Rhacocarpus": { + "p": "Rhacocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Enemion": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aquilegia": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paraquilegia": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urophysa": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paropyrum": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptopyrum": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichocarpum": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Semiaquilegia": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isopyrum": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thalictrum": { + "p": "Thalictroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudobraunia": { + "p": "Hedwigiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryowijkia": { + "p": "Hedwigiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Braunia": { + "p": "Hedwigiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedwigia": { + "p": "Hedwigiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedwigidium": { + "p": "Hedwigiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrastis": { + "p": "Hydrastidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helicophyllum": { + "p": "Helicophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coptis": { + "p": "Coptidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthorhiza": { + "p": "Coptidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stereophyllum": { + "p": "Stereophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyptothecium": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilosium": { + "p": "Stereophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendropogonella": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hildebrandtiella": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fauriella": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyrto-hypnum": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachelyma": { + "p": "Fontinalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendroalsia": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thuidiopsis": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Horikawaea": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptogonium": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Renauldia": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symphysodon": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Juratzkaea": { + "p": "Stereophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterobryon": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Muellerobryum": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthostichidium": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryonoguchia": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jaegerina": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schoenobryum": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Henicodium": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerotheciella": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rauiella": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symphysodontella": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spiridentopsis": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pelekium": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichelyma": { + "p": "Fontinalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryphaeophilum": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterobryopsis": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryphaea": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prionodon": { + "p": "Prionodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Entodontopsis": { + "p": "Stereophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhytidium": { + "p": "Rhytidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eulacophyllum": { + "p": "Stereophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhabdodontium": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catagoniopsis": { + "p": "Stereophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudopterobryum": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrocryphaea": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyptodontopsis": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilotrichopsis": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boulaya": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyptodon": { + "p": "Cryphaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neolindbergia": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Penzigiella": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thuidium": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fontinalis": { + "p": "Fontinalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abietinella": { + "p": "Thuidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pireella": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthostichopsis": { + "p": "Pterobryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinothuidium": { + "p": "Helodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helodium": { + "p": "Helodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Straminergon": { + "p": "Calliergonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachytheciastrum": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stereodon": { + "p": "Stereodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clastobryellina": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Notohypnum": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zygogynum": { + "p": "Winteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Warburgia": { + "p": "Canellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylocomiadelphus": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurozium": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptohymenium": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aptychella": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterogonidium": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trochophyllohypnum": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eurhynchium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orontobryum": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudotrismegistia": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platygyrium": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meteoriella": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aerolindigia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isocladiella": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neodolichomitra": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antitrichia": { + "p": "Leucodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schofieldiella": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camptothecium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterogoniadelphus": { + "p": "Leucodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drimys": { + "p": "Winteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Yakushimabryum": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucodon": { + "p": "Leucodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhytidiadelphus": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhytidiopsis": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Takhtajania": { + "p": "Winteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eurhynchiella": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anomodon": { + "p": "Anomodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Puiggariopsis": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echinophyllum": { + "p": "Helodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrothamnaceae": { + "p": "Gunnerales", + "c": [ + "Myrothamnus" + ], + "n": "", + "r": "FAMILY" + }, + "Eurhynchiadelphus": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brotherella": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Warnstorfia": { + "p": "Calliergonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudowintera": { + "p": "Winteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aerobryum": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mastopoma": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryonorrisia": { + "p": "Anomodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herpetineuron": { + "p": "Anomodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cirriphyllum": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryhnia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hygrohypnella": { + "p": "Scorpidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Entodon": { + "p": "Entodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exospermum": { + "p": "Winteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gammiella": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orientobryum": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gunneraceae": { + "p": "Gunnerales", + "c": [ + "Gunnera" + ], + "n": "", + "r": "FAMILY" + }, + "Calliergon": { + "p": "Calliergonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callicladium": { + "p": "Callicladiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cinnamodendron": { + "p": "Canellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriodon": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachythecium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schwetschkeopsis": { + "p": "Anomodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loeskypnum": { + "p": "Calliergonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tasmannia": { + "p": "Winteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Capsicodendron": { + "p": "Canellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryoandersonia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythrodontium": { + "p": "Entodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrothamnium": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hamatocaulis": { + "p": "Calliergonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eurhynchiastrum": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleodendron": { + "p": "Canellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chileobryon": { + "p": "Anomodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylocomiastrum": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cinnamosma": { + "p": "Canellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clasmatodon": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taxithelium": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Donrichardsia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microgammiella": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplohymenium": { + "p": "Anomodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylocomium": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wijkia": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Frahmiella": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isopterygium": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clastobryum": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dozya": { + "p": "Leucodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptocladiella": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterophyllium": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesonodon": { + "p": "Entodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canella": { + "p": "Canellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loeskeobryum": { + "p": "Hylocomiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pylaisiadelpha": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trismegistia": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eurhynchiopsis": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nogopterium": { + "p": "Leucodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bubbia": { + "p": "Winteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bonnosukea": { + "p": "Pylaisiadelphaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudokindbergia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrocladium": { + "p": "Lepyrodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Giraldiella": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Horridohypnum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zelometeorium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bartramia": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isopterygiopsis": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepyrodon": { + "p": "Lepyrodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepyrodontopsis": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eurohypnum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bartramidula": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herzogiella": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylophyllopsis": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoscleropodium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyocomium": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dacryophyllum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudotrachypus": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buckiella": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aerobryopsis": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Longiella": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudotaxiphyllum": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conostomum": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Juratzkaeella": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plasteurhynchium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Floribundaria": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calohypnum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palamocladium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiomela": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Papillaria": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anacolia": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenocarpidiopsis": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedenaesia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhynchostegiella": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flowersia": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiopus": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Squamidium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tomentypnum": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elmeriobryum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sciuro-hypnum": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platyhypnidium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudospiridentopsis": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diaphanodon": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kindbergia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palisadula": { + "p": "Myuriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudorhynchostegiella": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Filibryum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Miyabea": { + "p": "Miyabeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllogonium": { + "p": "Phyllogoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedenasiastrum": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Torrentaria": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chrysocladium": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthothecium": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryocrumia": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinskea": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachypodopsis": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isopterygiella": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachybryum": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scleropodiopsis": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ctenidium": { + "p": "Myuriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quathlamba": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachypus": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxyrrhynchium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Duthiella": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philonotis": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andoa": { + "p": "Myuriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hageniella": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barbella": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Steerecleus": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fleischerobryum": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neodicladiella": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neonoguchia": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lindigia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptopapillaria": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microeurhynchium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scleropodium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrohondaella": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bissetia": { + "p": "Miyabeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glossadelphus": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachycladiella": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Remyella": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meteoridium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myuroclada": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Breutelia": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypnum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Toloxis": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oedicladium": { + "p": "Myuriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicladiella": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meteorium": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myurium": { + "p": "Myuriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myurella": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eumyurium": { + "p": "Myuriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neosharpiella": { + "p": "Bartramiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hondaella": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Okamuraea": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aerobryidium": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiothecium": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homalotheciella": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylophyllum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhynchostegium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudobarbella": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bardunovia": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiodontium": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meteoriopsis": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sainthelenia": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Redfearnia": { + "p": "Plagiotheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barbellopsis": { + "p": "Meteoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Foreauella": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helicodontium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homalothecium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homaliadelphus": { + "p": "Miyabeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scorpiurium": { + "p": "Brachytheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taxiphyllum": { + "p": "Taxiphyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthorrhynchium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camptochaete": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryostreimannia": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pengchengwua": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Yunnanobryon": { + "p": "Regmatodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sanionia": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neckeropsis": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alsia": { + "p": "Leptodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryobuckia": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neobarbella": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baldwiniella": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scorpidium": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rigodiadelphus": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porothamnium": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilotrichella": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platygyriella": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterogoniopsis": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neorutenbergia": { + "p": "Rutenbergiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metaneckera": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porotrichopsis": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhaphidorrhynchium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alleniella": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptopterigynandrum": { + "p": "Taxiphyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Donnellia": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kandaea": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leskeella": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meiothecium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mamillariella": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exsertotheca": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sematophyllum": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homalia": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palustriella": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leskea": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pinnatella": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Larrainia": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichosteleum": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydropogonella": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vittia": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylocomiopsis": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoleskea": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhacopilopsis": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amblystegium": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudohypnella": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Potamium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schroeterella": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limnohypnum": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fifea": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isodrepanium": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planicladium": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Piloecium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoleskeopsis": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dolichomitriopsis": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neckera": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dolichomitra": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anacamptodon": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Regmatodon": { + "p": "Regmatodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dannorrisia": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptychodium": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Warburgiella": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Weymouthia": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clastobryella": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllodon": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydropogon": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Handeliobryum": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocalliergon": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microhypnum": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Shevockia": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Noguchiodendron": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Looseria": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aptychopsis": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoparaphysanthus": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoamblystegium": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Circulifolium": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thamnomalia": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clastobryophilum": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arvernella": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sclerohypnum": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echinodiopsis": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocryphaea": { + "p": "Rutenbergiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypnobartlettia": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lescuraea": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caduciella": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isothecium": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Touwia": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cratoneuropsis": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cratoneuron": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Papillidiopsis": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lembophyllum": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drepanium": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryolawtonia": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platydictya": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrocryphaea": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ignatovia": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platylomella": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mawenzhangia": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthotheciella": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homaliodendron": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptilium": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylium": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rigodium": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptodon": { + "p": "Leptodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fallaciella": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gradsteinia": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thysananthus subgen. Thysananthus": { + "p": "Thysananthus", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Caribaeohypnum": { + "p": "Taxiphyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rutenbergia": { + "p": "Rutenbergiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thamnobryum": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarmentypnum": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leskeadelphus": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptodictyum": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podperaea": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhaphidostichum": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porotrichodendron": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thysananthus subgen. Mastigolejeunea": { + "p": "Thysananthus", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Drepanocladus": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sasaokaea": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lindbergia": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stereodontopsis": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Himantocladium": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chionostomum": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limbella": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrohymenium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tripterocladium": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microamblystegium": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrothamnium": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sciaromiopsis": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rozea": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocampylium": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taxiphyllopsis": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthorrhynchium": { + "p": "Orthorrhynchiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schwetschkea": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campyliadelphus": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachyloma": { + "p": "Trachylomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hygrohypnum": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paranapiacabaea": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curviramea": { + "p": "Taxiphyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acroporium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Claopodium": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porotrichum": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crassiphyllum": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taiwanobryum": { + "p": "Leptodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptoleptodon": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colobodontium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mahua": { + "p": "Hypnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catagonium": { + "p": "Catagoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radulina": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bestia": { + "p": "Lembophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conardia": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Forsstroemia": { + "p": "Leptodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pendulothecium": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platyhypnum": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neacroporium": { + "p": "Sematophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudanomodon": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoleskeella": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hygroamblystegium": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mittenothamnium": { + "p": "Taxiphyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplocladium": { + "p": "Leskeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curvicladium": { + "p": "Neckeraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jochenia": { + "p": "Jocheniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jankuceraea": { + "p": "Amblystegiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chryso-hypnum": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caldesia": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dimorphocladon": { + "p": "Symphyodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rheoshevockia": { + "p": "Symphyodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sagittaria": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dimerodontium": { + "p": "Fabroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caryophyllales": { + "p": "Pentapetalae", + "c": [ + "Achatocarpaceae", + "Agdestidaceae", + "Amaranthaceae", + "Ancistrocladaceae", + "Asteropeiaceae", + "Barbeuiaceae", + "Polygonaceae", + "Cactineae", + "Molluginaceae", + "Chenopodiaceae", + "Corbichoniaceae", + "Dioncophyllaceae", + "Drosophyllaceae", + "Nyctaginaceae", + "Frankeniaceae", + "Gisekiaceae", + "Aizoaceae", + "Kewaceae", + "Plumbaginaceae", + "Limeaceae", + "Lophiocarpaceae", + "Macarthuriaceae", + "Microteaceae", + "Nepenthaceae", + "Petiveriaceae", + "Physenaceae", + "Caryophyllaceae", + "Phytolaccaceae", + "Rhabdodendraceae", + "Sarcobataceae", + "Simmondsiaceae", + "Stegnospermataceae", + "Droseraceae", + "Tamaricaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chaetomitriopsis": { + "p": "Symphyodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afrothamnium": { + "p": "Orthostichellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterigynandrum": { + "p": "Pterigynandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Posidonia": { + "p": "Posidoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pylaisia": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachythecium": { + "p": "Symphyodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Levierella": { + "p": "Fabroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterocladium": { + "p": "Pterigynandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "rosids": { + "p": "Pentapetalae", + "c": [ + "fabids", + "malvids" + ], + "n": "", + "r": "CLADE" + }, + "Calliergonella": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Albidella": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scheuchzeria": { + "p": "Scheuchzeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ectropothecium": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Damasonium": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limnophyton": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Butomopsis": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhizofabronia": { + "p": "Fabroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllospadix": { + "p": "Zosteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudohygrohypnum": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echinodium": { + "p": "Echinodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Butomus": { + "p": "Butomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harperocallis": { + "p": "Tofieldiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dilleniales": { + "p": "Pentapetalae", + "c": [ + "Dilleniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Fabronia": { + "p": "Fabroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wiesneria": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Berberidopsidales": { + "p": "Pentapetalae", + "c": [ + "Aextoxicaceae", + "Berberidopsidaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ischyrodon": { + "p": "Fabroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleea": { + "p": "Tofieldiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Climacium": { + "p": "Climaciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baldellia": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrocleys": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aquilonium": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helanthium": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thelia": { + "p": "Theliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudostereodon": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burnatia": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthostichella": { + "p": "Orthostichellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homomallium": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triantha": { + "p": "Tofieldiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saxifragales": { + "p": "Pentapetalae", + "c": [ + "Altingiaceae", + "Aphanopetalaceae", + "Grossulariaceae", + "Cynomoriaceae", + "Daphniphyllaceae", + "Haloragaceae", + "Iteaceae", + "Cercidiphyllaceae", + "Penthoraceae", + "Paeoniaceae", + "Peridiscaceae", + "Pterostemonaceae", + "Saxifragaceae", + "Crassulaceae", + "Tetracarpaeaceae", + "Hamamelidaceae" + ], + "n": "", + "r": "ORDER" + }, + "Isidrogalvia": { + "p": "Tofieldiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gollania": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudomalia": { + "p": "Echinodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetomitrium": { + "p": "Symphyodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alisma": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Iwatsukiella": { + "p": "Pterigynandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetroncium": { + "p": "Juncaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dixonia": { + "p": "Orthostichellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrinia": { + "p": "Myriniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ranalisma": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Luronium": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleuroziopsis": { + "p": "Climaciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symphyodon": { + "p": "Symphyodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astonia": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limnocharis": { + "p": "Alismataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roaldia": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deslooveria": { + "p": "Orthostichellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "asterids": { + "p": "Pentapetalae", + "c": [ + "campanulids", + "Cornales", + "Ericales", + "lamiids" + ], + "n": "", + "r": "CLADE" + }, + "Acorus": { + "p": "Acoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Unclejackia": { + "p": "Symphyodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calliergonellopsis": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buckia": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triglochin": { + "p": "Juncaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cycnogeton": { + "p": "Juncaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachyphyllum": { + "p": "Pterigynandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vesicularia": { + "p": "Pylaisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zostera": { + "p": "Zosteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tofieldia": { + "p": "Tofieldiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Santalales": { + "p": "Pentapetalae", + "c": [ + "Amphorogynaceae", + "Aptandraceae", + "Balanophoraceae", + "Cervantesiaceae", + "Comandraceae", + "Coulaceae", + "Erythropalaceae", + "Misodendraceae", + "Mystropetalaceae", + "Nanodeaceae", + "Octoknemaceae", + "Olacaceae", + "Opiliaceae", + "Santalaceae", + "Schoepfiaceae", + "Loranthaceae", + "Strombosiaceae", + "Thesiaceae", + "Viscaceae", + "Ximeniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Echinodorus": { + "p": "Alismataceae", + "c": [], + "n": "burheads", + "r": "GENUS" + }, + "Habrodon": { + "p": "Pterigynandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scabrellifolium": { + "p": "Orthostichellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterozostera": { + "p": "Zosteraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Egeria": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orontioideae": { + "p": "Araceae", + "c": [ + "Lysichiton", + "Orontium", + "Symplocarpus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Enhalus": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elodea": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zannichellia": { + "p": "Potamogetonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudalthenia": { + "p": "Potamogetonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vallisneria": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halodule": { + "p": "Cymodoceaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calloideae": { + "p": "Araceae", + "c": [ + "Calla" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Hydrocharis": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nechamandra": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ottelia": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thalassia": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Althenia": { + "p": "Potamogetonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrilla": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aponogeton": { + "p": "Aponogetonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lemnoideae": { + "p": "Araceae", + "c": [ + "Lemna", + "Landoltia", + "Spirodela", + "Wolffia", + "Wolffiella" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Ruppia": { + "p": "Cymodoceaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cymodocea": { + "p": "Cymodoceaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Groenlandia": { + "p": "Potamogetonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lagarosiphon": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apalanthe": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Syringodium": { + "p": "Cymodoceaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stratiotes": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aroideae": { + "p": "Araceae", + "c": [ + "Montrichardia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Philodendroideae": { + "p": "Araceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Blyxa": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schismatoglottidoideae": { + "p": "Araceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Gymnostachydoideae": { + "p": "Araceae", + "c": [ + "Gymnostachys" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Limnobium": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pothoideae": { + "p": "Araceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Thalassodendron": { + "p": "Cymodoceaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Najas": { + "p": "Hydrocharitaceae", + "c": [], + "n": "naiads", + "r": "GENUS" + }, + "Maidenia": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maundia": { + "p": "Maundiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stuckenia": { + "p": "Potamogetonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphibolis": { + "p": "Cymodoceaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasioideae": { + "p": "Araceae", + "c": [ + "Anaphyllopsis", + "Cyrtosperma", + "Dracontioides", + "Dracontium", + "Lasia", + "Lasimorpha", + "Podolasia", + "Pycnospatha", + "Urospatha" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Lepilaena": { + "p": "Potamogetonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halophila": { + "p": "Hydrocharitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Potamogeton": { + "p": "Potamogetonaceae", + "c": [], + "n": "pondweeds", + "r": "GENUS" + }, + "Jamesonia": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pityrogramma": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Syngramma": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salpichlaena": { + "p": "Stenochlaenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tryonia": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptogramma": { + "p": "Cryptogrammoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cerosora": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actiniopteris": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gastoniella": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oeosporangium": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Llavea": { + "p": "Cryptogrammoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterozonium": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anogramma": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cosentinia": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochropteris": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taenitis": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coniogramme": { + "p": "Cryptogrammoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrogramme": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neurocallis": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Onychium": { + "p": "Pteridoideae", + "c": [], + "n": "claw ferns", + "r": "GENUS" + }, + "Stenochlaena": { + "p": "Stenochlaenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Telmatoblechnum": { + "p": "Stenochlaenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriosorus": { + "p": "Pteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteris": { + "p": "Pteridoideae", + "c": [ + "Pteris subgen. Campteria", + "Pteris subgen. Platyzoma", + "Pteris subgen. Pteris" + ], + "n": "", + "r": "GENUS" + }, + "Aspidotis": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calciphilopteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptolepidium": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Negripteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lorinseria": { + "p": "Woodwardioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentagramma": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheiloplecton": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ormopteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemionitis": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinopteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Woodwardia": { + "p": "Woodwardioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bommeria": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mildella": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paraceterach": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Argyrochosma": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adiantopsis": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paragymnopteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pellaea": { + "p": "Cheilanthoideae", + "c": [], + "n": "cliff brakes", + "r": "GENUS" + }, + "Notholaena": { + "p": "Cheilanthoideae", + "c": [], + "n": "cloak ferns", + "r": "GENUS" + }, + "Acrostichum": { + "p": "Parkerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheilanthes": { + "p": "Cheilanthoideae", + "c": [], + "n": "lip ferns", + "r": "GENUS" + }, + "Cheilosoria": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lytoneuron": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gaga": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratopteris": { + "p": "Parkerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parahemionitis": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aleuritopteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astrolepis": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Doryopteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachypteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myriopteris": { + "p": "Cheilanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anchistea": { + "p": "Woodwardioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Struthiopteris": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vaginularia": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomariocycas": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ampelopteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brainea": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cranfillia": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parablechnum": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amauropelta": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coryphopteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amblovenatum": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adiantum": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ananthacorus": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomaridium": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diploblechnum": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hecistopteris": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antrophyopsis": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sadleria": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radiovittaria": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polytaenium": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scoliosorus": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blechnidium": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomaria": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vittaria": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Icarus": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cleistoblechnum": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplopteris": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Doodia": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goniopteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glaphyropteridopsis": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Christella": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blechnopsis": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austroblechnum": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclogramma": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grypothrix": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rheopteris": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoblechnum": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monogramma": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chingia": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abacopteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oceaniopteris": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclosorus": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyocline": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blechnum": { + "p": "Blechnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antrophyum": { + "p": "Vittarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melpomene": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Enterosora": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metathelypteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boonkerdia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesopteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Archigrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alansmia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrosorus": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pakau": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryopteris": { + "p": "Dryopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calligrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreopteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reholttumia": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ascogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calymmodon": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galactodenia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyrtomium": { + "p": "Dryopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hoiokula": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aenigmatogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cochlidium": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parathelypteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictymia": { + "p": "Loxogrammoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arachniodes": { + "p": "Dryopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ctenopterella": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerostephanos": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptogramma": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesophlebion": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pronephrium": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Menisorus": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomaphlebia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stegnogramma": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trigonospora": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strophocaulon": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nannothelypteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Menisciopsis": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plesioneuron": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grammitastrum": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ctenitis": { + "p": "Dryopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Devolia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocyclosorus": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polystichum": { + "p": "Dryopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dasygrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Howeogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pelazoneuron": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pneumatopteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lellingeria": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceradenia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aspidium": { + "p": "Dryopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ctenopteris": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudotectaria": { + "p": "Dryopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenophorus": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phanerophlebia": { + "p": "Dryopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chrysogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loxogramme": { + "p": "Loxogrammoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Steiropteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thelypteris": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meniscium": { + "p": "Thelypteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucotrichum": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micropolypodium": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hovenkampia": { + "p": "Platycerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thylacopteris": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lecanopteris": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polypodiopteris": { + "p": "Drynarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zealandia": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lastreopsis": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microgramma": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neolepisorus": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrrosia": { + "p": "Platycerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platycerium": { + "p": "Platycerioideae", + "c": [], + "n": "staghorn ferns", + "r": "GENUS" + }, + "Parapolystichum": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pecluma": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rumohra": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrothelypteris": { + "p": "Phegopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parrisia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Terpsichore": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Selliguea": { + "p": "Drynarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Teratophyllum": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radiogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aglaomorpha": { + "p": "Drynarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campyloneurum": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adetogramma": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thalassogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleocnemia": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microsorum": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goniophlebium": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidomicrosorium": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Themelium": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudophegopteris": { + "p": "Phegopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phymatopteris": { + "p": "Drynarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurosoriopsis": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arthromeris": { + "p": "Drynarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prosaptia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platygyria": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drynaria": { + "p": "Drynarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xiphopterella": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Megalastrum": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Notogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phegopteris": { + "p": "Phegopteridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Moranopteris": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepisorus": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bolbitis": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bosmania": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zygophlebia": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lemmaphyllum": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rouhania": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnogrammitis": { + "p": "Drynarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tomophyllum": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Serpocaulon": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colysis": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Niphidium": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scleroglossum": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomagramma": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polypodium": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mickelia": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mycopteris": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nanogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neurodium": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neocheiropteris": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleopeltis": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptochilus": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreogrammitis": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phlebodium": { + "p": "Polypodioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendroconche": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricholepidium": { + "p": "Microsoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elaphoglossum": { + "p": "Elaphoglossoideae", + "c": [], + "n": "tongueferns", + "r": "GENUS" + }, + "Xiphopteris": { + "p": "Grammitidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arthrobotrya": { + "p": "Elaphoglossoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stigmatopteris": { + "p": "Polybotryoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Olfersia": { + "p": "Polybotryoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichoneuron": { + "p": "Polybotryoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maxonia": { + "p": "Polybotryoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polystichopsis": { + "p": "Polybotryoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polybotrya": { + "p": "Polybotryoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclodium": { + "p": "Polybotryoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Retrophyllum": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parasitaxus": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microstrobos": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Idiospermum": { + "p": "Idiospermoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nageia": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Falcatifolium": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sundacarpus": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afrocarpus": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saxegothaea": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pherosphaera": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podocarpus": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prumnopitys": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acmopyle": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dacrycarpus": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllocladus": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidothamnus": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microcachrys": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Manoao": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lagarostrobos": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pectinopitys": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dacrydium": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halocarpus": { + "p": "Podocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agathis": { + "p": "Araucariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Araucaria": { + "p": "Araucariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wollemia": { + "p": "Araucariaceae", + "c": [], + "n": "wollemi pine", + "r": "GENUS" + }, + "Pseudotsuga": { + "p": "Pinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Larix": { + "p": "Pinaceae", + "c": [], + "n": "larches", + "r": "GENUS" + }, + "Abies": { + "p": "Pinaceae", + "c": [], + "n": "fir trees", + "r": "GENUS" + }, + "Nothotsuga": { + "p": "Pinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pinus": { + "p": "Pinaceae", + "c": [ + "Pinus subgen. Pinus", + "Pinus subgen. Strobus" + ], + "n": "", + "r": "GENUS" + }, + "Cedrus": { + "p": "Pinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tsuga": { + "p": "Pinaceae", + "c": [], + "n": "hemlocks", + "r": "GENUS" + }, + "Picea": { + "p": "Pinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Keteleeria": { + "p": "Pinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudolarix": { + "p": "Pinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cathaya": { + "p": "Pinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Torreya": { + "p": "Taxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pauridia": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asphodeloideae": { + "p": "Asphodelaceae", + "c": [ + "Aloe", + "Aloe x Aloiampelos", + "Aloiampelos", + "Aloidendron", + "Aristaloe", + "Asphodeline", + "Asphodelus", + "Astroloba", + "Bulbine", + "Bulbinella", + "Chortolirion", + "Eremurus", + "Gasteria", + "Gonialoe", + "Haworthia", + "Haworthiopsis", + "Jodrellia", + "Kniphofia", + "Kumara", + "Lomatophyllum", + "Trachyandra", + "Tulista", + "x Astroworthia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Allioideae": { + "p": "Amaryllidaceae", + "c": [], + "n": "onion famly", + "r": "SUBFAMILY" + }, + "Brodiaeoideae": { + "p": "Asparagaceae", + "c": [ + "Androstephium", + "Behria", + "Bessera", + "Bloomeria", + "Brodiaea", + "Dandya", + "Dichelostemma", + "Jaimehintonia", + "Milla", + "Muilla", + "Petronymphe", + "Triteleia", + "Triteleiopsis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Crocoideae": { + "p": "Iridaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "x Pardancanda": { + "p": "Iridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Odontostomum": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tecophilaea": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomandroideae": { + "p": "Asparagaceae", + "c": [ + "Acanthocarpus", + "Arthropodium", + "Chamaexeros", + "Cordyline", + "Dichopogon", + "Eustrephus", + "Laxmannia", + "Lomandra", + "Murchisonia", + "Romnalda", + "Sowerbaea", + "Thysanotus", + "Xerolirion" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Collospermum": { + "p": "Asteliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kabuyea": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oziroeoideae": { + "p": "Hyacinthaceae", + "c": [ + "Oziroe" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Ornithogaloideae": { + "p": "Hyacinthaceae", + "c": [ + "Albuca", + "Avonsera", + "Battandiera", + "Cathissa", + "Coilonox", + "Dipcadi", + "Eliokarmos", + "Elsiea", + "Ethesia", + "Galtonia", + "Honorius", + "Igidia", + "Loncomelos", + "Melomphis", + "Neopatersonia", + "Nicipe", + "Ornithogalum", + "Pseudogaltonia", + "Resnova", + "Stellarioides", + "Trimelopter" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Empodium": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rajania": { + "p": "Dioscoreaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orchidoideae": { + "p": "Orchidaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Cephalotaxus": { + "p": "Taxaceae", + "c": [], + "n": "plum yews", + "r": "GENUS" + }, + "Pseudotaxus": { + "p": "Taxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astelia": { + "p": "Asteliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tacca": { + "p": "Taccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lettowianthus": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meiocarpidium": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyanastrum": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Iridoideae": { + "p": "Iridaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Dioscorea": { + "p": "Dioscoreaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ixiolirion": { + "p": "Ixioliriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nivenioideae": { + "p": "Iridaceae", + "c": [ + "Klattia", + "Nivenia", + "Witsenia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Asparagoideae": { + "p": "Asparagaceae", + "c": [ + "Asparagus", + "Hemiphylacus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Spiloxene": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cearanthes": { + "p": "Amaryllidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mezzettia": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drepananthus": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyanella": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodohypoxis": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenomeris": { + "p": "Dioscoreaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metanarthecium": { + "p": "Nartheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aristeoideae": { + "p": "Iridaceae", + "c": [ + "Aristea" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Myrsiphyllum": { + "p": "Asparagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lanaria": { + "p": "Lanariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemerocallidoideae": { + "p": "Asphodelaceae", + "c": [ + "Agrostocrinum", + "Arnocrinum", + "Caesia", + "Chamaescilla", + "Corynotheca", + "Dianella", + "Eccremis", + "Geitonoplesium", + "Hemerocallis", + "Hensmania", + "Herpolirion", + "Hodgsoniola", + "Johnsonia", + "Pasithea", + "Phormium", + "Rhuacophila", + "Simethis", + "Stawellia", + "Stypandra", + "Thelionema", + "Tricoryne" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Ambavia": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cleistopholis": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neofriedmannia": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyacinthoideae": { + "p": "Hyacinthaceae", + "c": [ + "Alrawia", + "Namophila" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Austrotaxus": { + "p": "Taxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xeronema": { + "p": "Xeronemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codonorchidoideae": { + "p": "Orchidaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Geosiridoideae": { + "p": "Iridaceae", + "c": [ + "Geosiris" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Urgineoideae": { + "p": "Hyacinthaceae", + "c": [ + "Aulostemon", + "Austronea", + "Boosia", + "Bowiea", + "Charybdis", + "Drimia", + "Ebertia", + "Geschollia", + "Indurgia", + "Iosanthus", + "Karoophila (nom. ined.)", + "Ledurgia", + "Litanthus", + "Mucinaea", + "Rhadamanthopsis", + "Rhadamanthus", + "Rhodocodon", + "Sagittanthera", + "Schizobasis", + "Sekanama", + "Squilla", + "Striatula", + "Tenicroa", + "Thuranthos", + "Triandra", + "Urginavia", + "Urginea", + "Urgineopsis", + "Vera-duthiea", + "Zingela" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cypripedioideae": { + "p": "Orchidaceae", + "c": [ + "Cypripedium", + "Mexipedium", + "Paphiopedilum", + "Phragmipedium", + "Selenipedium" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Neoastelia": { + "p": "Asteliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichopus": { + "p": "Dioscoreaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrameranthus": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyathocalyx": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amentotaxus": { + "p": "Taxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vanilloideae": { + "p": "Orchidaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Epidendroideae": { + "p": "Orchidaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Hypoxis": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nietneria": { + "p": "Nartheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthorrhoeoideae": { + "p": "Asphodelaceae", + "c": [ + "Xanthorrhoea" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Isophysidoideae": { + "p": "Iridaceae", + "c": [ + "Isophysis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Saniella": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Walleria": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taxus": { + "p": "Taxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Patersonioideae": { + "p": "Iridaceae", + "c": [ + "Patersonia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cananga": { + "p": "Ambavioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blandfordia": { + "p": "Blandfordiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agapanthoideae": { + "p": "Amaryllidaceae", + "c": [ + "Agapanthus" + ], + "n": "African lily family", + "r": "SUBFAMILY" + }, + "Agavoideae": { + "p": "Asparagaceae", + "c": [ + "Agave", + "Anemarrhena", + "Anthericum", + "Behnia", + "Beschorneria", + "Camassia", + "Chlorogalum", + "Chlorophytum", + "Diamena", + "Diuranthera", + "Echeandia", + "Furcraea", + "Hagenbachia", + "Hastingsia", + "Herreria", + "Herreriopsis", + "Hesperaloe", + "Hesperocallis", + "Hesperoyucca", + "Leucocrinum", + "Manfreda", + "Paradisea", + "Hosta", + "Polianthes", + "Prochnyanthes", + "Schoenolirion", + "Trichopetalum", + "Yucca" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Zephyra": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Narthecium": { + "p": "Nartheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nolinoideae": { + "p": "Asparagaceae", + "c": [ + "Aspidistra", + "Nolina", + "Sansevieria", + "Campylandra", + "Chrysodracon", + "Comospermum", + "Convallaria", + "Danae", + "Disporopsis", + "Dracaena", + "Eriospermum", + "Heteropolygonatum", + "Kreysigia", + "Liriope", + "Maianthemum", + "Ophiopogon", + "Peliosanthes", + "Pleomele", + "Beaucarnea", + "Reineckea", + "Rohdea", + "Ruscus", + "Semele", + "Polygonatum", + "Dasylirion", + "Speirantha", + "Theropogon", + "Tricalistra", + "Tupistra", + "Streptopus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Lophiola": { + "p": "Nartheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremiolirion": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinocurculigo": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphyllanthoideae": { + "p": "Asparagaceae", + "c": [ + "Aphyllanthes" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Milligania": { + "p": "Asteliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conanthera": { + "p": "Tecophilaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curculigo": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amaryllidoideae": { + "p": "Amaryllidaceae", + "c": [ + "Acis", + "Amaryllis", + "Ammocharis", + "Apodolirion", + "Sternbergia", + "Haemanthus", + "Boophone", + "Brunsvigia", + "Caliphruria", + "Calostemma", + "Carpolyza", + "Chlidanthus", + "Clivia", + "Crinum", + "Crossyne", + "Cryptostephanus", + "Cybistetes", + "Cyrtanthus", + "Eremocrinum", + "Eucharis", + "Eucrosia", + "Eurycles", + "Eustephia", + "Gethyllis", + "Griffinia", + "Hannonia", + "Haylockia", + "Hessea", + "Hieronymiella", + "Hymenocallis", + "Ismene", + "Lapiedra", + "Leptochiton", + "Leucojum", + "Lycoris", + "Namaquanula", + "Narcissus", + "Nerine", + "Pabellonia", + "Pancratium", + "Phaedranassa", + "Plagiolirion", + "Proiphys", + "Pyrolirion", + "Rauhia", + "Scadoxus", + "Shoubiaonia", + "Galanthus", + "Stemmatium", + "Stenomesson", + "Strumaria", + "Ungernia", + "Urceolina", + "Vagaria", + "Worsleya" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Sciadopitys": { + "p": "Sciadopityaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Molineria": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apostasioideae": { + "p": "Orchidaceae", + "c": [ + "Apostasia", + "Neuwiedia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Aletris": { + "p": "Nartheciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypoxidia": { + "p": "Hypoxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neocallitropsis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrocedrus": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thujopsis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthocyparis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diselma": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platycladus": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Borya": { + "p": "Boryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Widdringtonia": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Juniperus": { + "p": "Cupressaceae", + "c": [], + "n": "junipers", + "r": "GENUS" + }, + "Cupressus": { + "p": "Cupressaceae", + "c": [], + "n": "cypress", + "r": "GENUS" + }, + "Sequoia": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microbiota": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calocedrus": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Libocedrus": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptomeria": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glyptostrobus": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callitropsis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sequoiadendron": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Athrotaxis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anaxagorea": { + "p": "Anaxagoreoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alania": { + "p": "Boryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaecyparis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hesperocyparis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thismia": { + "p": "Thismiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thuja": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetraclinis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taxodium": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taiwania": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Doryanthes": { + "p": "Doryanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fokienia": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fitzroya": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinostrobus": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Papuacedrus": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxygyne": { + "p": "Thismiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cunninghamia": { + "p": "Cupressaceae", + "c": [], + "n": "China firs", + "r": "GENUS" + }, + "Metasequoia": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilgerodendron": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callitris": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "x Hesperotropsis": { + "p": "Cupressaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Magnolia subgen. Manglietia": { + "p": "Magnolia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Afrothismia": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apteria": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tiputinia": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Miersiella": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burmannia": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyostega": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hexapterella": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylosiphon": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cymbocarpa": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geomitra": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnosiphon": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplothismia": { + "p": "Burmanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hexacyrtis": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ypsilandra": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriocaulaceae": { + "p": "Poales", + "c": [ + "Actinocephalus", + "Blastocaulon", + "Lachnocaulon", + "Comanthera", + "Eriocaulon", + "Leiothrix", + "Mesanthemum", + "Paepalanthus", + "Philodice", + "Rondonanthus", + "Syngonanthus", + "Tonina" + ], + "n": "pipewort family", + "r": "FAMILY" + }, + "Corsia": { + "p": "Corsiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androcymbium": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schelhammera": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dasypogonaceae": { + "p": "Arecales", + "c": [ + "Baxteria", + "Calectasia", + "Dasypogon", + "Kingia" + ], + "n": "", + "r": "FAMILY" + }, + "Leontochir": { + "p": "Alstroemeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterosmilax": { + "p": "Smilacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chionographis": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Typhaceae": { + "p": "Poales", + "c": [ + "Rohrbachia", + "Sparganium", + "Typha" + ], + "n": "bur-reed family", + "r": "FAMILY" + }, + "Daiswa": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kuntheria": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scoliopus": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bomarea": { + "p": "Alstroemeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uvularia": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rapateaceae": { + "p": "Poales", + "c": [ + "Amphiphyllum", + "Cephalostemon", + "Duckea", + "Epidryos", + "Guacamaya", + "Kunhardtia", + "Marahuacaea", + "Maschalocephalus", + "Monotrema", + "Potarophytum", + "Rapatea", + "Saxo-fridericia", + "Schoenocephalium", + "Spathanthus", + "Stegolepis", + "Windsorina" + ], + "n": "", + "r": "FAMILY" + }, + "Campynemanthe": { + "p": "Campynemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xyridaceae": { + "p": "Poales", + "c": [ + "Abolboda", + "Aratitiyopea", + "Orectanthe", + "Xyris" + ], + "n": "yellow-eye grass family", + "r": "FAMILY" + }, + "Pseudotrillium": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zigadenus": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Disporum": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strelitziaceae": { + "p": "Zingiberales", + "c": [ + "Phenakospermum", + "Ravenala", + "Strelitzia" + ], + "n": "bird-of-paradise family", + "r": "FAMILY" + }, + "Cannaceae": { + "p": "Zingiberales", + "c": [ + "Canna" + ], + "n": "canna family", + "r": "FAMILY" + }, + "Arachnitis": { + "p": "Corsiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenanthium": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ornithoglossum": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trillium": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amianthium": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thurniaceae": { + "p": "Poales", + "c": [ + "Prionium", + "Thurnia" + ], + "n": "", + "r": "FAMILY" + }, + "Philydraceae": { + "p": "Commelinales", + "c": [ + "Helmholtzia", + "Philydrella", + "Philydrum" + ], + "n": "", + "r": "FAMILY" + }, + "Anticlea": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drymophila": { + "p": "Alstroemeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Onixotis": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyperaceae": { + "p": "Poales", + "c": [ + "Cyperoideae", + "Mapanioideae" + ], + "n": "sedge family", + "r": "FAMILY" + }, + "Costaceae": { + "p": "Zingiberales", + "c": [ + "Chamaecostus", + "Costus", + "Dimerocostus", + "Hellenia", + "Monocostus", + "Paracostus", + "Parahellenia", + "Tapeinochilos" + ], + "n": "", + "r": "FAMILY" + }, + "Wurmbea": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Iphigenia": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paris": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Veratrum": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Musaceae": { + "p": "Zingiberales", + "c": [ + "Ensete", + "Musa", + "Musella" + ], + "n": "banana family", + "r": "FAMILY" + }, + "Juncaceae": { + "p": "Poales", + "c": [ + "Distichia", + "Marsippospermum", + "Oreojuncus", + "Oxychloe", + "Patosia", + "Rostkovia", + "Juncus", + "Luzula" + ], + "n": "rush family", + "r": "FAMILY" + }, + "Toxicoscordion": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camptorrhiza": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kinugasa": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pontederiaceae": { + "p": "Commelinales", + "c": [ + "Heteranthera", + "Hydrothrix", + "Pontederia" + ], + "n": "water-hyacinth family", + "r": "FAMILY" + }, + "Ripogonum": { + "p": "Ripogonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Smilax": { + "p": "Smilacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helonias": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poaceae": { + "p": "Poales", + "c": [ + "Anomochlooideae", + "BOP clade", + "PACMAD clade", + "Pharoideae", + "Puelioideae" + ], + "n": "grass family", + "r": "FAMILY" + }, + "Commelinaceae": { + "p": "Commelinales", + "c": [ + "Aetheolirion", + "Amischotolype", + "Aneilema", + "Anthericopsis", + "Belosynapsis", + "Buforrestia", + "Callisia", + "Cartonema", + "Cochliostema", + "Coleotrype", + "Commelina", + "Cyanotis", + "Dichorisandra", + "Dictyospermum", + "Elasis", + "Floscopa", + "Geogenanthus", + "Gibasis", + "Gibasoides", + "Murdannia", + "Palisota", + "Plowmanianthus", + "Pollia", + "Polyspatha", + "Porandra", + "Pseudoparis", + "Rhopalephora", + "Siderasis", + "Spatholirion", + "Tradescantia", + "Stanfieldiella", + "Streptolirion", + "Tapheocarpa", + "Thyrsanthemum", + "Tinantia", + "Tricarpelema", + "Tripogandra", + "Weldenia" + ], + "n": "spiderwort family", + "r": "FAMILY" + }, + "Lapageria": { + "p": "Smilacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tripladenia": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Joinvilleaceae": { + "p": "Poales", + "c": [ + "Joinvillea" + ], + "n": "", + "r": "FAMILY" + }, + "Bromeliaceae": { + "p": "Poales", + "c": [ + "Brocchinioideae", + "Bromelioideae", + "Hechtioideae", + "Lindmanioideae", + "Navioideae", + "Pitcairnioideae", + "Puyoideae", + "Tillandsioideae" + ], + "n": "bromeliad family", + "r": "FAMILY" + }, + "Arecaceae": { + "p": "Arecales", + "c": [ + "Arecoideae", + "Calamoideae", + "Ceroxyloideae", + "Coryphoideae", + "Nypoideae" + ], + "n": "palm family", + "r": "FAMILY" + }, + "Mayacaceae": { + "p": "Poales", + "c": [ + "Mayaca" + ], + "n": "", + "r": "FAMILY" + }, + "Colchicum": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heliconiaceae": { + "p": "Zingiberales", + "c": [ + "Heliconia" + ], + "n": "", + "r": "FAMILY" + }, + "Alstroemeria": { + "p": "Alstroemeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baeometra": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burchardia": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trillidium": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Merendera": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campynema": { + "p": "Campynemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schoenocaulon": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaelirium": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prosartes": { + "p": "Colchicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ecdeiocoleaceae": { + "p": "Poales", + "c": [ + "Ecdeiocolea", + "Georgeantha" + ], + "n": "", + "r": "FAMILY" + }, + "Lowiaceae": { + "p": "Zingiberales", + "c": [ + "Orchidantha" + ], + "n": "", + "r": "FAMILY" + }, + "Marantaceae": { + "p": "Zingiberales", + "c": [ + "Afrocalathea", + "Thalia", + "Ataenidia", + "Calathea", + "Cominsia", + "Ctenanthe", + "Donax", + "Goeppertia", + "Halopegia", + "Haumania", + "Hylaeanthe", + "Hypselodelphys", + "Indianthus", + "Ischnosiphon", + "Koernickanthe", + "Maranta", + "Marantochloa", + "Megaphrynium", + "Monophrynium", + "Monotagma", + "Myrosma", + "Phacelophrynium", + "Phrynium", + "Pleiostachya", + "Sanblasia", + "Saranthe", + "Sarcophrynium", + "Schumannianthus", + "Stachyphrynium", + "Stromanthe", + "Thaumatococcus", + "Trachyphrynium" + ], + "n": "prayer-plant family", + "r": "FAMILY" + }, + "Zingiberaceae": { + "p": "Zingiberales", + "c": [ + "Aframomum", + "Alpinia", + "Amomum", + "Aulotandra", + "Boesenbergia", + "Borneocola", + "Burbidgea", + "Camptandra", + "Caulokaempferia", + "Cautleya", + "Conamomum", + "Cornukaempferia", + "Curcuma", + "Curcumorpha", + "Cyphostigma", + "Distichochlamys", + "Elettaria", + "Elettariopsis", + "Epiamomum", + "Etlingera", + "Gagnepainia", + "Geocharis", + "Geostachys", + "Globba", + "Haniffia", + "Haplochorema", + "Hedychium", + "Hemiorchis", + "Hitchenia", + "Hornstedtia", + "Kaempferia", + "Kedhalia", + "Lanxangia", + "Laosanthus", + "Larsenianthus", + "Leptosolena", + "Meistera", + "Monolophus", + "Myxochlamys", + "Newmania", + "Nicolaia", + "Paracautleya", + "Paramomum", + "Plagiostachys", + "Pleuranthodium", + "Pommereschea", + "Pyrgophyllum", + "Renealmia", + "Rhynchanthus", + "Riedelia", + "Roscoea", + "Scaphochlamys", + "Siamanthus", + "Siliquamomum", + "Siphonochilus", + "Smithatris", + "Stahlianthus", + "Sulettaria", + "Sundamomum", + "Tamijia", + "Vanoverberghia", + "Wurfbainia", + "Zingiber" + ], + "n": "ginger family", + "r": "FAMILY" + }, + "Xerophyllum": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heloniopsis": { + "p": "Melanthiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flagellariaceae": { + "p": "Poales", + "c": [ + "Flagellaria" + ], + "n": "", + "r": "FAMILY" + }, + "Luzuriaga": { + "p": "Alstroemeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philesia": { + "p": "Philesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloriosa": { + "p": "Colchicaceae", + "c": [], + "n": "climbing lilies", + "r": "GENUS" + }, + "Restionaceae": { + "p": "Poales", + "c": [ + "Acion", + "Alexgeorgea", + "Anarthria", + "Anthochortus", + "Aphelia", + "Apodasmia", + "Askidiosperma", + "Baloskion", + "Calopsis", + "Calorophus", + "Cannomois", + "Catacolea", + "Centrolepis", + "Ceratocaryum", + "Chaetanthus", + "Chondropetalum", + "Chordifex", + "Coleocarya", + "Cytogonidium", + "Dapsilanthus", + "Desmocladus", + "Dielsia", + "Dovea", + "Elegia", + "Empodisma", + "Eurychorda", + "Gaimardia", + "Guringalia", + "Harperia", + "Hopkinsia", + "Hydrophilus", + "Hypodiscus", + "Hypolaena", + "Ischyrolepis", + "Kulinia", + "Lepidobolus", + "Leptocarpus", + "Lepyrodia", + "Loxocarya", + "Lyginia", + "Mastersiella", + "Meeboldina", + "Melanostachya", + "Nevillea", + "Onychosepalum", + "Platycaulos", + "Platychorda", + "Restio", + "Rhodocoma", + "Saropsis", + "Soroveta", + "Sporadanthus", + "Staberoha", + "Stenotalis", + "Taraxis", + "Thamnochortus", + "Tremulina", + "Tyrbastes", + "Willdenowia", + "Winifredia" + ], + "n": "", + "r": "FAMILY" + }, + "Hanguanaceae": { + "p": "Commelinales", + "c": [ + "Hanguana" + ], + "n": "", + "r": "FAMILY" + }, + "Haemodoraceae": { + "p": "Commelinales", + "c": [ + "Anigozanthos", + "Barberetta", + "Blancoa", + "Conostylis", + "Dilatris", + "Haemodorum", + "Lachnanthes", + "Macropidia", + "Phlebocarya", + "Pyrrorhiza", + "Schiekia", + "Tribonanthes", + "Wachendorfia", + "Xiphidium" + ], + "n": "bloodwort family", + "r": "FAMILY" + }, + "Stemona": { + "p": "Stemonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gagea": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricyrtis": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lilium": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amana": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nomocharis": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentastemona": { + "p": "Stemonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clintonia": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Notholirion": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cardiocrinum": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sandersonia": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Medeola": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stichoneuron": { + "p": "Stemonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fritillaria": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Croomia": { + "p": "Stemonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petrosavia": { + "p": "Petrosaviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petermannia": { + "p": "Petermanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythronium": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calochortus": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tulipa": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Japonolirion": { + "p": "Petrosaviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lloydia": { + "p": "Liliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Soridium": { + "p": "Triuridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andruris": { + "p": "Triuridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ludovia": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Martellidendron": { + "p": "Pandanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kihansia": { + "p": "Triuridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sciaphila": { + "p": "Triuridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sararanga": { + "p": "Pandanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthochlamys": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barbaceniopsis": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Benstonea": { + "p": "Pandanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carludovica": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Freycinetia": { + "p": "Pandanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burlemarxia": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Seychellaria": { + "p": "Triuridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stelestylis": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclanthus": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asplundia": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chorigyne": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lacandonia": { + "p": "Triuridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurostima": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dianthoveus": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barbacenia": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thoracocarpus": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pandanus": { + "p": "Pandanaceae", + "c": [], + "n": "screw pines", + "r": "GENUS" + }, + "Dicranopygium": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Talbotia": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Evodianthus": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kupea": { + "p": "Triuridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xerophyta": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vellozia": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nanuza": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aylthonia": { + "p": "Velloziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schultesiophytum": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaeradenia": { + "p": "Cyclanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triuris": { + "p": "Triuridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrothamnus": { + "p": "Myrothamnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gunnera": { + "p": "Gunneraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcobataceae": { + "p": "Caryophyllales", + "c": [ + "Sarcobatus" + ], + "n": "", + "r": "FAMILY" + }, + "Droseraceae": { + "p": "Caryophyllales", + "c": [ + "Aldrovanda", + "Dionaea", + "Drosera" + ], + "n": "sundew family", + "r": "FAMILY" + }, + "Cactineae": { + "p": "Caryophyllales", + "c": [ + "Anacampserotaceae", + "Basellaceae", + "Cactaceae", + "Didiereaceae", + "Halophytaceae", + "Montiaceae", + "Portulacaceae", + "Talinaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Aizoaceae": { + "p": "Caryophyllales", + "c": [ + "Acrodon", + "Acrosanthes", + "Aizoanthemum", + "Aizoon", + "Aloinopsis", + "Amphibolia", + "Antegibbaeum", + "Antimima", + "Apatesia", + "Arenifera", + "Argyroderma", + "Astridia", + "Bergeranthus", + "Bijlia", + "Braunsia", + "Brianhuntleya", + "Carpanthea", + "Carpobrotus", + "Carruanthus", + "Cephalophyllum", + "Cerochlamys", + "Chasmatophyllum", + "Cheiridopsis", + "Cleretum", + "Conicosia", + "Conophytum", + "Corpuscularia", + "Cylindrophyllum", + "Cypselea", + "Deilanthe", + "Delosperma", + "Dicrocaulon", + "Didymaotus", + "Dinteranthus", + "Diplosoma", + "Disphyma", + "Dracophilus", + "Drosanthemopsis", + "Drosanthemum", + "Eberlanzia", + "Ebracteola", + "Enarganthe", + "Erepsia", + "Esterhuysenia", + "Faucaria", + "Fenestraria", + "Frithia", + "Galenia", + "Gibbaeum", + "Glottiphyllum", + "Gunniopsis", + "Hallianthus", + "Hammeria", + "Hartmanthus", + "Hereroa", + "Hymenogyne", + "Ihlenfeldtia", + "Jacobsenia", + "Jensenobotrya", + "Jordaaniella", + "Juttadinteria", + "Khadia", + "Lampranthus", + "Lapidaria", + "Leipoldtia", + "Lemonanthemum", + "Lithops", + "Machairophyllum", + "Malephora", + "Marlothistella", + "Mesembryanthemum", + "Mestoklema", + "Meyerophytum", + "Mitrophyllum", + "Monilaria", + "Mossia", + "Namaquanthus", + "Namibia", + "Nananthus", + "Nelia", + "Neohenricia", + "Octopoma", + "Odontophorus", + "Oophytum", + "Orthopterum", + "Oscularia", + "Ottosonderia", + "Peersia", + "Phiambolia", + "Pleiospilos", + "Plinthus", + "Polymita", + "Prepodesma", + "Psammophora", + "Rabiea", + "Rhinephyllum", + "Rhombophyllum", + "Roosia", + "Ruschia", + "Ruschianthus", + "Ruschiella", + "Saphesia", + "Schlechteranthus", + "Schwantesia", + "Scopelogena", + "Sesuvium", + "Skiatophytum", + "Smicrostigma", + "Stayneria", + "Stoeberia", + "Stomatium", + "Tanquana", + "Tetragonia", + "Titanopsis", + "Trianthema", + "Tribulocarpus", + "Trichodiadema", + "Vanheerdea", + "Vanzijlia", + "Vlokia", + "Wooleya", + "Zaleya", + "Zeuktophyllum" + ], + "n": "iceplant family", + "r": "FAMILY" + }, + "Lophiocarpaceae": { + "p": "Caryophyllales", + "c": [ + "Lophiocarpus" + ], + "n": "", + "r": "FAMILY" + }, + "Molluginaceae": { + "p": "Caryophyllales", + "c": [ + "Adenogramma", + "Coelanthum", + "Glinus", + "Hypertelis", + "Mollugo", + "Paramollugo", + "Pharnaceum", + "Polpoda", + "Psammotropha", + "Suessenguthiella", + "Trigastrotheca" + ], + "n": "carpet-weed family", + "r": "FAMILY" + }, + "Rhabdodendraceae": { + "p": "Caryophyllales", + "c": [ + "Rhabdodendron" + ], + "n": "", + "r": "FAMILY" + }, + "Gisekiaceae": { + "p": "Caryophyllales", + "c": [ + "Gisekia" + ], + "n": "", + "r": "FAMILY" + }, + "Chenopodiaceae": { + "p": "Caryophyllales", + "c": [ + "Acroglochin", + "Betoideae", + "Camphorosmoideae", + "Chenopodioideae", + "Corispermoideae", + "Salicornioideae", + "Salsoloideae", + "Suaedoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Plumbaginaceae": { + "p": "Caryophyllales", + "c": [ + "Acantholimon", + "Aegialitis", + "Afrolimon", + "Bakerolimon", + "Bamiania", + "Bukiniczia", + "Cephalorhizum", + "Ceratolimon", + "Ceratostigma", + "Chaetolimon", + "Dictyolimon", + "Dyerophytum", + "Gladiolimon", + "Goniolimon", + "Ikonnikovia", + "Plumbago", + "Limoniastrum", + "Limonium", + "Muellerolimon", + "Myriolimon", + "Plumbagella", + "Popoviolimon", + "Psylliostachys", + "Saharanthus", + "Armeria", + "Vassilczenkoa" + ], + "n": "leadwort family", + "r": "FAMILY" + }, + "Dilleniaceae": { + "p": "Dilleniales", + "c": [ + "Acrotrema", + "Curatella", + "Davilla", + "Dillenia", + "Doliocarpus", + "Hibbertia", + "Neodillenia", + "Pachynema", + "Pinzona", + "Schumacheria", + "Tetracera" + ], + "n": "", + "r": "FAMILY" + }, + "Dioncophyllaceae": { + "p": "Caryophyllales", + "c": [ + "Dioncophyllum", + "Habropetalum", + "Triphyophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Physenaceae": { + "p": "Caryophyllales", + "c": [ + "Physena" + ], + "n": "", + "r": "FAMILY" + }, + "malvids": { + "p": "rosids", + "c": [ + "Brassicales", + "Crossosomatales", + "Geraniales", + "Huerteales", + "Malvales", + "Myrtales", + "Picramniales", + "Sapindales" + ], + "n": "", + "r": "CLADE" + }, + "Achatocarpaceae": { + "p": "Caryophyllales", + "c": [ + "Achatocarpus", + "Phaulothamnus" + ], + "n": "", + "r": "FAMILY" + }, + "Limeaceae": { + "p": "Caryophyllales", + "c": [ + "Limeum" + ], + "n": "", + "r": "FAMILY" + }, + "Berberidopsidaceae": { + "p": "Berberidopsidales", + "c": [ + "Berberidopsis", + "Streptothamnus" + ], + "n": "", + "r": "FAMILY" + }, + "Agdestidaceae": { + "p": "Caryophyllales", + "c": [ + "Agdestis" + ], + "n": "", + "r": "FAMILY" + }, + "Aextoxicaceae": { + "p": "Berberidopsidales", + "c": [ + "Aextoxicon" + ], + "n": "", + "r": "FAMILY" + }, + "Drosophyllaceae": { + "p": "Caryophyllales", + "c": [ + "Drosophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Kewaceae": { + "p": "Caryophyllales", + "c": [ + "Kewa" + ], + "n": "", + "r": "FAMILY" + }, + "Nepenthaceae": { + "p": "Caryophyllales", + "c": [ + "Nepenthes" + ], + "n": "", + "r": "FAMILY" + }, + "fabids": { + "p": "rosids", + "c": [ + "Celastrales", + "Cucurbitales", + "Fabales", + "Fagales", + "Malpighiales", + "Oxalidales", + "Rosales", + "Zygophyllales" + ], + "n": "", + "r": "CLADE" + }, + "Amaranthaceae": { + "p": "Caryophyllales", + "c": [ + "Achyranthes", + "Achyropsis", + "Aervoideae", + "Agathophora", + "Allmania", + "Allmaniopsis", + "Alternanthera", + "Amaranthus", + "Arthraerua", + "Bosea", + "Calicorema", + "Celosia", + "Centema", + "Centemopsis", + "Centrostachys", + "Chamissoa", + "Charpentiera", + "Chionothrix", + "Cyathula", + "Cyphocarpa", + "Dasysphaera", + "Deeringia", + "Digera", + "Froelichia", + "Gomphrenoideae", + "Gossypianthus", + "Guilleminea", + "Hebanthe", + "Henonia", + "Hermbstaedtia", + "Lagrezia", + "Leucosphaera", + "Lithophila", + "Lopriorea", + "Marcelliopsis", + "Mechowia", + "Nelsia", + "Nototrichium", + "Nyssanthes", + "Pandiaka", + "Pedersenia", + "Pfaffia", + "Pleuropetalum", + "Pleuropterantha", + "Polycnemoideae", + "Polyrhabda", + "Pseudoplantago", + "Psilotrichum", + "Pupalia", + "Quaternella", + "Sericocoma", + "Sericocomopsis", + "Sericorema", + "Sericostachys", + "Tidestromia", + "Volkensinia", + "Xerosiphon" + ], + "n": "amaranth family", + "r": "FAMILY" + }, + "Tamaricaceae": { + "p": "Caryophyllales", + "c": [ + "Hololachna", + "Myricaria", + "Reaumuria", + "Tamarix" + ], + "n": "tamarix family", + "r": "FAMILY" + }, + "Frankeniaceae": { + "p": "Caryophyllales", + "c": [ + "Frankenia" + ], + "n": "", + "r": "FAMILY" + }, + "Microteaceae": { + "p": "Caryophyllales", + "c": [ + "Microtea" + ], + "n": "", + "r": "FAMILY" + }, + "Nyctaginaceae": { + "p": "Caryophyllales", + "c": [ + "Abronia", + "Acleisanthes", + "Allionia", + "Andradea", + "Anulocaulis", + "Belemia", + "Boerhavia", + "Bougainvillea", + "Caribea", + "Ceodes", + "Colignonia", + "Commicarpus", + "Cryptocarpus", + "Cuscatlania", + "Cyphomeris", + "Grajalesia", + "Guapira", + "Leucaster", + "Mirabilis", + "Neea", + "Nyctaginia", + "Okenia", + "Phaeoptilum", + "Pisonia", + "Pisoniella", + "Ramisia", + "Reichenbachia", + "Rockia", + "Salpianthus", + "Tripterocalyx" + ], + "n": "four o'clock family", + "r": "FAMILY" + }, + "Simmondsiaceae": { + "p": "Caryophyllales", + "c": [ + "Simmondsia" + ], + "n": "", + "r": "FAMILY" + }, + "Barbeuiaceae": { + "p": "Caryophyllales", + "c": [ + "Barbeuia" + ], + "n": "", + "r": "FAMILY" + }, + "Polygonaceae": { + "p": "Caryophyllales", + "c": [ + "Antenoron", + "Eriogonoideae", + "Pleuropterus", + "Polygonoideae", + "Symmerioideae" + ], + "n": "buckwheat family", + "r": "FAMILY" + }, + "Asteropeiaceae": { + "p": "Caryophyllales", + "c": [ + "Asteropeia" + ], + "n": "", + "r": "FAMILY" + }, + "Phytolaccaceae": { + "p": "Caryophyllales", + "c": [ + "Anisomeria", + "Ercilla", + "Gallesia", + "Hilleria", + "Ledenbergia", + "Monococcus", + "Phytolacca", + "Schindleria", + "Seguieria", + "Trichostigma" + ], + "n": "pokeweed family", + "r": "FAMILY" + }, + "Stegnospermataceae": { + "p": "Caryophyllales", + "c": [ + "Stegnosperma" + ], + "n": "", + "r": "FAMILY" + }, + "Ancistrocladaceae": { + "p": "Caryophyllales", + "c": [ + "Ancistrocladus" + ], + "n": "", + "r": "FAMILY" + }, + "Caryophyllaceae": { + "p": "Caryophyllales", + "c": [ + "Cherleria" + ], + "n": "pink family", + "r": "FAMILY" + }, + "Macarthuriaceae": { + "p": "Caryophyllales", + "c": [ + "Macarthuria" + ], + "n": "", + "r": "FAMILY" + }, + "Petiveriaceae": { + "p": "Caryophyllales", + "c": [ + "Petiveria" + ], + "n": "", + "r": "FAMILY" + }, + "Corbichoniaceae": { + "p": "Caryophyllales", + "c": [ + "Corbichonia" + ], + "n": "", + "r": "FAMILY" + }, + "Pterostemonaceae": { + "p": "Saxifragales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Haloragaceae": { + "p": "Saxifragales", + "c": [ + "Glischrocaryon", + "Gonocarpus", + "Haloragis", + "Haloragodendron", + "Laurembergia", + "Meionectes", + "Meziella", + "Proserpinaca", + "Trihaloragis", + "Myriophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Penthoraceae": { + "p": "Saxifragales", + "c": [ + "Penthorum" + ], + "n": "", + "r": "FAMILY" + }, + "Saxifragaceae": { + "p": "Saxifragales", + "c": [ + "Saxifragella" + ], + "n": "saxifrage family", + "r": "FAMILY" + }, + "Ericales": { + "p": "asterids", + "c": [ + "Lecythidaceae", + "Actinidiaceae", + "Clethraceae", + "Cyrillaceae", + "Diapensiaceae", + "Ebenaceae", + "Ericaceae", + "Mitrastemonaceae", + "Myrsinaceae", + "Fouquieriaceae", + "Pentaphylacaceae", + "Polemoniaceae", + "Sarraceniaceae", + "Primulaceae", + "Roridulaceae", + "Sapotaceae", + "Marcgraviaceae", + "Sladeniaceae", + "Styracaceae", + "Symplocaceae", + "Theaceae", + "Ternstroemiaceae", + "Tetrameristaceae", + "Theophrastaceae", + "Balsaminaceae" + ], + "n": "", + "r": "ORDER" + }, + "Crassulaceae": { + "p": "Saxifragales", + "c": [ + "Adromischus", + "Aeonium", + "Aichryson", + "Aizopsis", + "Bryophyllum", + "Cotyledon", + "Crassula", + "Cremnophila", + "Diamorpha", + "Dudleya", + "Echeveria", + "Greenovia", + "Hylotelephium", + "Hypagophytum", + "Jovibarba", + "Kitchingia", + "Graptopetalum", + "Lenophyllum", + "Meterostachys", + "Monanthes", + "Orostachys", + "Pachyphytum", + "Kalanchoe", + "Petrosedum", + "Phedimus", + "Pistorinia", + "Prometheum", + "Pseudosedum", + "Rhodiola", + "Rosularia", + "Sedella", + "Sedum", + "Sempervivella", + "Sempervivum", + "Sinocrassula", + "Tacitus", + "Telmissa", + "Thompsonella", + "Tylecodon", + "Umbilicus", + "Villadia", + "x Sedeveria" + ], + "n": "stonecrop family", + "r": "FAMILY" + }, + "Amphorogynaceae": { + "p": "Santalales", + "c": [ + "Amphorogyne", + "Choretrum", + "Daenikera", + "Dendromyza", + "Dendrotrophe", + "Dufrenoya", + "Leptomeria", + "Phacellaria", + "Spirogardnera" + ], + "n": "", + "r": "FAMILY" + }, + "Tetracarpaeaceae": { + "p": "Saxifragales", + "c": [ + "Tetracarpaea" + ], + "n": "", + "r": "FAMILY" + }, + "Cynomoriaceae": { + "p": "Saxifragales", + "c": [ + "Cynomorium" + ], + "n": "", + "r": "FAMILY" + }, + "Grossulariaceae": { + "p": "Saxifragales", + "c": [ + "Ribes" + ], + "n": "currant family", + "r": "FAMILY" + }, + "Paeoniaceae": { + "p": "Saxifragales", + "c": [ + "Paeonia" + ], + "n": "peony family", + "r": "FAMILY" + }, + "Hamamelidaceae": { + "p": "Saxifragales", + "c": [ + "Chunia", + "Corylopsis", + "Dicoryphe", + "Disanthus", + "Distyliopsis", + "Distylium", + "Embolanthera", + "Eustigma", + "Exbucklandia", + "Fortunearia", + "Loropetalum", + "Maingaya", + "Matudaea", + "Molinadendron", + "Mytilaria", + "Neostrearia", + "Noahdendron", + "Ostrearia", + "Parrotia", + "Parrotiopsis", + "Rhodoleia", + "Semiliquidambar", + "Sinowilsonia", + "Sycopsis", + "Tetrathyrium", + "Trichocladus", + "Hamamelis", + "Fothergilla" + ], + "n": "witch-hazel family", + "r": "FAMILY" + }, + "Cercidiphyllaceae": { + "p": "Saxifragales", + "c": [ + "Cercidiphyllum" + ], + "n": "katsura tree family", + "r": "FAMILY" + }, + "Cervantesiaceae": { + "p": "Santalales", + "c": [ + "Acanthosyris", + "Cervantesia", + "Jodina", + "Okoubaka", + "Pilgerina", + "Pyrularia", + "Scleropyrum", + "Staufferia" + ], + "n": "", + "r": "FAMILY" + }, + "campanulids": { + "p": "asterids", + "c": [ + "Apiales", + "Aquifoliales", + "Asterales", + "Bruniales", + "Cardiopteridales", + "Dipsacales", + "Escalloniales", + "Paracryphiales" + ], + "n": "", + "r": "CLADE" + }, + "Aphanopetalaceae": { + "p": "Saxifragales", + "c": [ + "Aphanopetalum" + ], + "n": "", + "r": "FAMILY" + }, + "Altingiaceae": { + "p": "Saxifragales", + "c": [ + "Altingia", + "Liquidambar" + ], + "n": "", + "r": "FAMILY" + }, + "lamiids": { + "p": "asterids", + "c": [ + "Boraginales", + "Garryales", + "Gentianales", + "Icacinales", + "Lamiales", + "Metteniusales", + "Oncothecales", + "Solanales", + "Vahliales" + ], + "n": "", + "r": "CLADE" + }, + "Aptandraceae": { + "p": "Santalales", + "c": [ + "Anacolosa", + "Aptandra", + "Cathedra", + "Chaunochiton", + "Harmandia", + "Hondurodendron", + "Ongokea", + "Phanerodiscus" + ], + "n": "", + "r": "FAMILY" + }, + "Peridiscaceae": { + "p": "Saxifragales", + "c": [ + "Medusandra", + "Peridiscus", + "Soyauxia", + "Whittonia" + ], + "n": "", + "r": "FAMILY" + }, + "Daphniphyllaceae": { + "p": "Saxifragales", + "c": [ + "Daphniphyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Balanophoraceae": { + "p": "Santalales", + "c": [ + "Balanophora", + "Corynaea", + "Helosis", + "Langsdorffia", + "Lathrophytum", + "Lophophytum", + "Ombrophytum", + "Rhopalocnemis", + "Sarcophyte", + "Scybalium", + "Thonningia" + ], + "n": "", + "r": "FAMILY" + }, + "Cornales": { + "p": "asterids", + "c": [ + "Cornoideae", + "Curtisiaceae", + "Davidioideae", + "Cornaceae", + "Grubbiaceae", + "Hydrangeaceae", + "Hydrostachyaceae", + "Loasaceae", + "Mastixioideae", + "Nyssaceae" + ], + "n": "", + "r": "ORDER" + }, + "Iteaceae": { + "p": "Saxifragales", + "c": [ + "Choristylis", + "Itea", + "Pterostemon" + ], + "n": "", + "r": "FAMILY" + }, + "Calla": { + "p": "Calloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Landoltia": { + "p": "Lemnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coulaceae": { + "p": "Santalales", + "c": [ + "Coula", + "Minquartia", + "Ochanostachys" + ], + "n": "", + "r": "FAMILY" + }, + "Orontium": { + "p": "Orontioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lemna": { + "p": "Lemnoideae", + "c": [], + "n": "duckweed", + "r": "GENUS" + }, + "Santalaceae": { + "p": "Santalales", + "c": [ + "Antidaphne", + "Colpoon", + "Eubrachion", + "Exocarpos", + "Lepidoceras", + "Myoschilos", + "Nestronia", + "Omphacomeria", + "Osyris", + "Rhoiacarpos", + "Santalum" + ], + "n": "sandlewood family", + "r": "FAMILY" + }, + "Loranthaceae": { + "p": "Santalales", + "c": [], + "n": "showy mistletoe family", + "r": "FAMILY" + }, + "Erythropalaceae": { + "p": "Santalales", + "c": [ + "Erythropalum", + "Heisteria", + "Maburea" + ], + "n": "", + "r": "FAMILY" + }, + "Strombosiaceae": { + "p": "Santalales", + "c": [ + "Diogoa", + "Engomegoma", + "Scorodocarpus", + "Strombosia", + "Strombosiopsis", + "Tetrastylidium" + ], + "n": "", + "r": "FAMILY" + }, + "Wolffia": { + "p": "Lemnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lysichiton": { + "p": "Orontioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nanodeaceae": { + "p": "Santalales", + "c": [ + "Mida", + "Nanodea" + ], + "n": "", + "r": "FAMILY" + }, + "Octoknemaceae": { + "p": "Santalales", + "c": [ + "Octoknema" + ], + "n": "", + "r": "FAMILY" + }, + "Spirodela": { + "p": "Lemnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Misodendraceae": { + "p": "Santalales", + "c": [ + "Misodendrum" + ], + "n": "feathery mistletoe family", + "r": "FAMILY" + }, + "Thesiaceae": { + "p": "Santalales", + "c": [ + "Austroamericium", + "Buckleya", + "Kunkeliella", + "Lacomucinaea", + "Osyridicarpos", + "Thesidium", + "Thesium" + ], + "n": "", + "r": "FAMILY" + }, + "Opiliaceae": { + "p": "Santalales", + "c": [ + "Agonandra", + "Anthobolus", + "Cansjera", + "Champereia", + "Gjellerupia", + "Lepionurus", + "Melientha", + "Opilia", + "Pentarhopalopilia", + "Rhopalopilia", + "Urobotrya" + ], + "n": "", + "r": "FAMILY" + }, + "Olacaceae": { + "p": "Santalales", + "c": [ + "Dulacia", + "Olax", + "Ptychopetalum" + ], + "n": "", + "r": "FAMILY" + }, + "Comandraceae": { + "p": "Santalales", + "c": [ + "Comandra", + "Geocaulon" + ], + "n": "", + "r": "FAMILY" + }, + "Wolffiella": { + "p": "Lemnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schoepfiaceae": { + "p": "Santalales", + "c": [ + "Arjona", + "Quinchamalium", + "Schoepfia" + ], + "n": "", + "r": "FAMILY" + }, + "Viscaceae": { + "p": "Santalales", + "c": [ + "Dendrophthora", + "Arceuthobium", + "Ginalloa", + "Korthalsella", + "Notothixos", + "Phoradendron", + "Viscum" + ], + "n": "", + "r": "FAMILY" + }, + "Ximeniaceae": { + "p": "Santalales", + "c": [ + "Curupira", + "Malania", + "Ximenia" + ], + "n": "", + "r": "FAMILY" + }, + "Symplocarpus": { + "p": "Orontioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mystropetalaceae": { + "p": "Santalales", + "c": [ + "Dactylanthus", + "Hachettea", + "Mystropetalon" + ], + "n": "", + "r": "FAMILY" + }, + "Cyrtosperma": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Montrichardia": { + "p": "Aroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pycnospatha": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dracontioides": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasimorpha": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urospatha": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dracontium": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasia": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnostachys": { + "p": "Gymnostachydoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podolasia": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anaphyllopsis": { + "p": "Lasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteris subgen. Campteria": { + "p": "Pteris", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Pteris subgen. Pteris": { + "p": "Pteris", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Pteris subgen. Platyzoma": { + "p": "Pteris", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Haworthiopsis": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pinus subgen. Strobus": { + "p": "Pinus", + "c": [], + "n": "haploxylon pines", + "r": "SUBGENUS" + }, + "Jodrellia": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asphodelus": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bulbine": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremurus": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pinus subgen. Pinus": { + "p": "Pinus", + "c": [], + "n": "diploxylon pines", + "r": "SUBGENUS" + }, + "Gonialoe": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chortolirion": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kniphofia": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astroloba": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asphodeline": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bulbinella": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aloe x Aloiampelos": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kumara": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aloidendron": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aristaloe": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aloiampelos": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aloe": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haworthia": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomatophyllum": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gasteria": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galtonia": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudogaltonia": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stellarioides": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eliokarmos": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bessera": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomandra": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Behria": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cordyline": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elsiea": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nicipe": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Igidia": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dandya": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipcadi": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jaimehintonia": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ornithogalum": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaexeros": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthocarpus": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petronymphe": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sowerbaea": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triteleia": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trimelopter": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arthropodium": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "x Astroworthia": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Avonsera": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Resnova": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thysanotus": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laxmannia": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachyandra": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ethesia": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Honorius": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triteleiopsis": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xerolirion": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichelostemma": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cathissa": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neopatersonia": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brodiaea": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loncomelos": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coilonox": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oziroe": { + "p": "Oziroeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Albuca": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichopogon": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eustrephus": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Milla": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Muilla": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melomphis": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Murchisonia": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bloomeria": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androstephium": { + "p": "Brodiaeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Romnalda": { + "p": "Lomandroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Battandiera": { + "p": "Ornithogaloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tulista": { + "p": "Asphodeloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Witsenia": { + "p": "Nivenioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemiphylacus": { + "p": "Asparagoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nivenia": { + "p": "Nivenioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asparagus": { + "p": "Asparagoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Klattia": { + "p": "Nivenioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sagittanthera": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vera-duthiea": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aulostemon": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhuacophila": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthorrhoea": { + "p": "Xanthorrhoeoideae", + "c": [], + "n": "grass trees", + "r": "GENUS" + }, + "Rhodocodon": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizobasis": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phragmipedium": { + "p": "Cypripedioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mexipedium": { + "p": "Cypripedioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stawellia": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Squilla": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pasithea": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhadamanthopsis": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stypandra": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ebertia": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isophysis": { + "p": "Isophysidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Selenipedium": { + "p": "Cypripedioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eccremis": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indurgia": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Johnsonia": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triandra": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geschollia": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sekanama": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hensmania": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bowiea": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hodgsoniola": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paphiopedilum": { + "p": "Cypripedioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urgineopsis": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phormium": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ledurgia": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thuranthos": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricoryne": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thelionema": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agrostocrinum": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geosiris": { + "p": "Geosiridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zingela": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drimia": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geitonoplesium": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Striatula": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemerocallis": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urginavia": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herpolirion": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cypripedium": { + "p": "Cypripedioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caesia": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tenicroa": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arnocrinum": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaescilla": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Karoophila (nom. ined.)": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austronea": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dianella": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mucinaea": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alrawia": { + "p": "Hyacinthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhadamanthus": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urginea": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Simethis": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Iosanthus": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Namophila": { + "p": "Hyacinthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boosia": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Charybdis": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Patersonia": { + "p": "Patersonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aristea": { + "p": "Aristeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corynotheca": { + "p": "Hemerocallidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Litanthus": { + "p": "Urgineoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prochnyanthes": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rohdea": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptostephanus": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthericum": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diuranthera": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haemanthus": { + "p": "Amaryllidoideae", + "c": [], + "n": "blood lilies", + "r": "GENUS" + }, + "Hannonia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stemmatium": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleomele": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremocrinum": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricalistra": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Worsleya": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maianthemum": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Semele": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brunsvigia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agapanthus": { + "p": "Agapanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galanthus": { + "p": "Amaryllidoideae", + "c": [], + "n": "snowdrops", + "r": "GENUS" + }, + "Nolina": { + "p": "Nolinoideae", + "c": [], + "n": "bear grasses", + "r": "GENUS" + }, + "Sternbergia": { + "p": "Amaryllidoideae", + "c": [], + "n": "autumn daffodil", + "r": "GENUS" + }, + "Peliosanthes": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenocallis": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dracaena": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Speirantha": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ismene": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reineckea": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diamena": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Comospermum": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scadoxus": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amaryllis": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boophone": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caliphruria": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptochiton": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herreria": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hesperaloe": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tupistra": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crinum": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Danae": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hessea": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ammocharis": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Yucca": { + "p": "Agavoideae", + "c": [], + "n": "yuccas", + "r": "GENUS" + }, + "Phaedranassa": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylandra": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anemarrhena": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Convallaria": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrolirion": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hosta": { + "p": "Agavoideae", + "c": [], + "n": "plantain lilies", + "r": "GENUS" + }, + "Cyrtanthus": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calostemma": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camassia": { + "p": "Agavoideae", + "c": [], + "n": "camases", + "r": "GENUS" + }, + "Eriospermum": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apostasia": { + "p": "Apostasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorogalum": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echeandia": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polianthes": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chrysodracon": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Namaquanula": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lycoris": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hastingsia": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haylockia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gethyllis": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hesperocallis": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vagaria": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herreriopsis": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kreysigia": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polygonatum": { + "p": "Nolinoideae", + "c": [], + "n": "Solomon's seals", + "r": "GENUS" + }, + "Cybistetes": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beschorneria": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nerine": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ungernia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Shoubiaonia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urceolina": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Furcraea": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heteropolygonatum": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hieronymiella": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beaucarnea": { + "p": "Nolinoideae", + "c": [], + "n": "ponytail palms", + "r": "GENUS" + }, + "Narcissus": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Behnia": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Theropogon": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acis": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sansevieria": { + "p": "Nolinoideae", + "c": [], + "n": "bowstring hemps", + "r": "GENUS" + }, + "Eurycles": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neuwiedia": { + "p": "Apostasioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Proiphys": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorophytum": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptopus": { + "p": "Nolinoideae", + "c": [], + "n": "twisted stalks", + "r": "GENUS" + }, + "Stenomesson": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Manfreda": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pancratium": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lapiedra": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strumaria": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossyne": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ophiopogon": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schoenolirion": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruscus": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiolirion": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apodolirion": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlidanthus": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carpolyza": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agave": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aspidistra": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucocrinum": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dasylirion": { + "p": "Nolinoideae", + "c": [], + "n": "sotols", + "r": "GENUS" + }, + "Disporopsis": { + "p": "Nolinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Griffinia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucojum": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hesperoyucca": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucrosia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichopetalum": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pabellonia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rauhia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphyllanthes": { + "p": "Aphyllanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paradisea": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clivia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Liriope": { + "p": "Nolinoideae", + "c": [], + "n": "lilyturfs", + "r": "GENUS" + }, + "Eustephia": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hagenbachia": { + "p": "Agavoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucharis": { + "p": "Amaryllidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tonina": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesanthemum": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philodice": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paepalanthus": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiothrix": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Comanthera": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rondonanthus": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinocephalus": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blastocaulon": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Syngonanthus": { + "p": "Eriocaulaceae", + "c": [], + "n": "shoe-buttons", + "r": "GENUS" + }, + "Lachnocaulon": { + "p": "Eriocaulaceae", + "c": [], + "n": "bogbuttons", + "r": "GENUS" + }, + "Eriocaulon": { + "p": "Eriocaulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xyris": { + "p": "Xyridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monotrema": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kunhardtia": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schoenocephalium": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canna": { + "p": "Cannaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phenakospermum": { + "p": "Strelitziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rapatea": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sparganium": { + "p": "Typhaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Epidryos": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dasypogon": { + "p": "Dasypogonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baxteria": { + "p": "Dasypogonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphiphyllum": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Duckea": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stegolepis": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rohrbachia": { + "p": "Typhaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abolboda": { + "p": "Xyridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spathanthus": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strelitzia": { + "p": "Strelitziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalostemon": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kingia": { + "p": "Dasypogonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aratitiyopea": { + "p": "Xyridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orectanthe": { + "p": "Xyridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maschalocephalus": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saxo-fridericia": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Typha": { + "p": "Typhaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calectasia": { + "p": "Dasypogonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Windsorina": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guacamaya": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marahuacaea": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Potarophytum": { + "p": "Rapateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ravenala": { + "p": "Strelitziaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaecostus": { + "p": "Costaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hellenia": { + "p": "Costaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyperoideae": { + "p": "Cyperaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Parahellenia": { + "p": "Costaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paracostus": { + "p": "Costaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dimerocostus": { + "p": "Costaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tapeinochilos": { + "p": "Costaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thurnia": { + "p": "Thurniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mapanioideae": { + "p": "Cyperaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Prionium": { + "p": "Thurniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philydrum": { + "p": "Philydraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philydrella": { + "p": "Philydraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monocostus": { + "p": "Costaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helmholtzia": { + "p": "Philydraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Costus": { + "p": "Costaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreojuncus": { + "p": "Juncaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heteranthera": { + "p": "Pontederiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Juncus": { + "p": "Juncaceae", + "c": [], + "n": "rushes", + "r": "GENUS" + }, + "Marsippospermum": { + "p": "Juncaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rostkovia": { + "p": "Juncaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Musella": { + "p": "Musaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ensete": { + "p": "Musaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Distichia": { + "p": "Juncaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrothrix": { + "p": "Pontederiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Patosia": { + "p": "Juncaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxychloe": { + "p": "Juncaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Luzula": { + "p": "Juncaceae", + "c": [], + "n": "woodrushes", + "r": "GENUS" + }, + "Musa": { + "p": "Musaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pontederia": { + "p": "Pontederiaceae", + "c": [ + "Pontederia subgen. Cabanisia", + "Pontederia subgen. Eichhornia", + "Pontederia subgen. Monochoria", + "Pontederia subgen. Oshunae", + "Pontederia subgen. Pontederia" + ], + "n": "", + "r": "GENUS" + }, + "Spatholirion": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heliconia": { + "p": "Heliconiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amischotolype": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tripogandra": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thyrsanthemum": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "PACMAD clade": { + "p": "Poaceae", + "c": [ + "Aristidoideae", + "Arundinoideae", + "Chloridoideae", + "Danthonioideae", + "Micrairoideae", + "Panicoideae" + ], + "n": "", + "r": "CLADE" + }, + "Hechtioideae": { + "p": "Bromeliaceae", + "c": [ + "Bakerantha", + "Hechtia", + "Mesoamerantha" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Rhopalephora": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tinantia": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calamoideae": { + "p": "Arecaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Palisota": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gibasoides": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siderasis": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arecoideae": { + "p": "Arecaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Lindmanioideae": { + "p": "Bromeliaceae", + "c": [ + "Lindmania" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Elasis": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Belosynapsis": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyspatha": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anomochlooideae": { + "p": "Poaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Callisia": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bromelioideae": { + "p": "Bromeliaceae", + "c": [ + "Acanthostachys", + "Aechmea", + "Ananas", + "Androlepis", + "Araeococcus", + "Billbergia", + "Bromelia", + "Canistropsis", + "Canistrum", + "Chevaliera", + "Cryptanthus", + "Deinacanthon", + "Disteganthus", + "Edmundoa", + "Eduandrea", + "Fascicularia", + "Fernseea", + "Forzzaea", + "Greigia", + "Hohenbergia", + "Hohenbergiopsis", + "Hoplocryptanthus", + "Karawata", + "Lapanthus", + "Lymania", + "Neoglaziovia", + "Nidularium", + "Ochagavia", + "Orthophytum", + "Portea", + "Pseudananas", + "Pseudaraeococcus", + "Quesnelia", + "Rokautskyia", + "Ronnbergia", + "Sincoraea", + "Streptocalyx", + "Wittmackia", + "Wittrockia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Weldenia": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coryphoideae": { + "p": "Arecaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Anthericopsis": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyanotis": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tapheocarpa": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aetheolirion": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nypoideae": { + "p": "Arecaceae", + "c": [ + "Nypa" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pseudoparis": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buforrestia": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porandra": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricarpelema": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Puelioideae": { + "p": "Poaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Mayaca": { + "p": "Mayacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichorisandra": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Navioideae": { + "p": "Bromeliaceae", + "c": [ + "Brewcaria", + "Navia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Brocchinioideae": { + "p": "Bromeliaceae", + "c": [ + "Ayensua", + "Brocchinia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cochliostema": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyospermum": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tradescantia": { + "p": "Commelinaceae", + "c": [], + "n": "spiderworts", + "r": "GENUS" + }, + "Gibasis": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Floscopa": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Murdannia": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Commelina": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceroxyloideae": { + "p": "Arecaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Stanfieldiella": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptolirion": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pollia": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geogenanthus": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coleotrype": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aneilema": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cartonema": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "BOP clade": { + "p": "Poaceae", + "c": [ + "Bambusoideae", + "Oryzoideae", + "Pooideae" + ], + "n": "", + "r": "CLADE" + }, + "Tillandsioideae": { + "p": "Bromeliaceae", + "c": [ + "core Tillandsioideae" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Puyoideae": { + "p": "Bromeliaceae", + "c": [ + "Puya" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pitcairnioideae": { + "p": "Bromeliaceae", + "c": [ + "Abromeitiella", + "Deuterocohnia", + "Dyckia", + "Encholirium", + "Fosterella", + "Pepinia", + "Pitcairnia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pharoideae": { + "p": "Poaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Joinvillea": { + "p": "Joinvilleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plowmanianthus": { + "p": "Commelinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Newmania": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedychium": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thaumatococcus": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptosolena": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alpinia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haumania": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caulokaempferia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camptandra": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Riedelia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haniffia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geostachys": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monotagma": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curcuma": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ataenidia": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laosanthus": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geocharis": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paracautleya": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myxochlamys": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Donax": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Distichochlamys": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cominsia": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marantochloa": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elettariopsis": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gagnepainia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schumannianthus": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elettaria": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curcumorpha": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ecdeiocolea": { + "p": "Ecdeiocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orchidantha": { + "p": "Lowiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afrocalathea": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stachyphrynium": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Etlingera": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phacelophrynium": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcophrynium": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Globba": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleiostachya": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiostachys": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scaphochlamys": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goeppertia": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cautleya": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indianthus": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylaeanthe": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boesenbergia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kedhalia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pommereschea": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhynchanthus": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrgophyllum": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amomum": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maranta": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachyphrynium": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lanxangia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypselodelphys": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saranthe": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ischnosiphon": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Georgeantha": { + "p": "Ecdeiocoleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sanblasia": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Renealmia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Megaphrynium": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hornstedtia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burbidgea": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stromanthe": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Borneocola": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kaempferia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nicolaia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrosma": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paramomum": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halopegia": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monophrynium": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calathea": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conamomum": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phrynium": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aulotandra": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cornukaempferia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monolophus": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hitchenia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplochorema": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleuranthodium": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roscoea": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ctenanthe": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemiorchis": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aframomum": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyphostigma": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Epiamomum": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Koernickanthe": { + "p": "Marantaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meistera": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Larsenianthus": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thalia": { + "p": "Marantaceae", + "c": [], + "n": "alligator-flag", + "r": "GENUS" + }, + "Hopkinsia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loxocarya": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetanthus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eurychorda": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platycaulos": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypolaena": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siphonochilus": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Centrolepis": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mastersiella": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Staberoha": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cannomois": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chondropetalum": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acion": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stahlianthus": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Onychosepalum": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desmocladus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schiekia": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrrorhiza": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ischyrolepis": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dapsilanthus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calopsis": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tremulina": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macropidia": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodocoma": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melanostachya": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Soroveta": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thamnochortus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tyrbastes": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harperia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenotalis": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sporadanthus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apodasmia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypodiscus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hanguana": { + "p": "Hanguanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alexgeorgea": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phlebocarya": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gaimardia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wachendorfia": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baloskion": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anarthria": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meeboldina": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sundamomum": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kulinia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chordifex": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coleocarya": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conostylis": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Empodisma": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guringalia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xiphidium": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidobolus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catacolea": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elegia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saropsis": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratocaryum": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platychorda": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haemodorum": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cytogonidium": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siliquamomum": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Restio": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dovea": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Winifredia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dilatris": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tamijia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nevillea": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blancoa": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flagellaria": { + "p": "Flagellariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siamanthus": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anigozanthos": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Askidiosperma": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tribonanthes": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Taraxis": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrophilus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barberetta": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Willdenowia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dielsia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lachnanthes": { + "p": "Haemodoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptocarpus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lyginia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sulettaria": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wurfbainia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphelia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calorophus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepyrodia": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zingiber": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthochortus": { + "p": "Restionaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vanoverberghia": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Smithatris": { + "p": "Zingiberaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nelia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eberlanzia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ottosonderia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deilanthe": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marlothistella": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sesuvium": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Odontophorus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Talinaceae": { + "p": "Cactineae", + "c": [ + "Talinella", + "Talinum" + ], + "n": "", + "r": "FAMILY" + }, + "Anacampserotaceae": { + "p": "Cactineae", + "c": [ + "Anacampseros", + "Grahamia", + "Talinopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Hallianthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mestoklema": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalophyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Khadia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruschia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhinephyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhombophyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aloinopsis": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antimima": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glottiphyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mossia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphibolia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenogyne": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Octopoma": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dionaea": { + "p": "Droseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cylindrophyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lithops": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conicosia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malephora": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Smicrostigma": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halophytaceae": { + "p": "Cactineae", + "c": [ + "Halophytum" + ], + "n": "", + "r": "FAMILY" + }, + "Corpuscularia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Basellaceae": { + "p": "Cactineae", + "c": [ + "Anredera", + "Basella", + "Ullucus" + ], + "n": "", + "r": "FAMILY" + }, + "Esterhuysenia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drosera": { + "p": "Droseraceae", + "c": [], + "n": "sundews", + "r": "GENUS" + }, + "Stomatium": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phiambolia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymaotus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erepsia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oscularia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psammophora": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drosanthemopsis": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleiospilos": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gunniopsis": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Braunsia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Namaquanthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roosia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Delosperma": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Namibia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcobatus": { + "p": "Sarcobataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peersia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cactaceae": { + "p": "Cactineae", + "c": [ + "Blossfeldioideae", + "Cactoideae", + "Leuenbergerioideae", + "Maihuenioideae", + "Opuntioideae", + "Pereskioideae" + ], + "n": "cactus family", + "r": "FAMILY" + }, + "Antegibbaeum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cypselea": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Skiatophytum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetragonia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brianhuntleya": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jensenobotrya": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mitrophyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plinthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthopterum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prepodesma": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruschiella": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stoeberia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gibbaeum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drosanthemum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lampranthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conophytum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Portulacaceae": { + "p": "Cactineae", + "c": [ + "Portulaca" + ], + "n": "purslane family", + "r": "FAMILY" + }, + "Tanquana": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leipoldtia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheiridopsis": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Juttadinteria": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rabiea": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Faucaria": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scopelogena": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jacobsenia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aldrovanda": { + "p": "Droseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hartmanthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arenifera": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meyerophytum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stayneria": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Argyroderma": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bijlia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dracophilus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Disphyma": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Machairophyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ebracteola": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astridia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schlechteranthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apatesia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrodon": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Enarganthe": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ihlenfeldtia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fenestraria": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Frithia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplosoma": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didiereaceae": { + "p": "Cactineae", + "c": [ + "Alluaudia", + "Alluaudiopsis", + "Calyptrotheca", + "Ceraria", + "Decarya", + "Didierea", + "Portulacaria" + ], + "n": "", + "r": "FAMILY" + }, + "Ruschianthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schwantesia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aizoanthemum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hereroa": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jordaaniella": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lemonanthemum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hammeria": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nananthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polymita": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monilaria": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Montiaceae": { + "p": "Cactineae", + "c": [ + "Calandrinia", + "Calyptridium", + "Hectorella", + "Lenzia", + "Lewisia", + "Lewisiopsis", + "Lyallia", + "Montia", + "Montiopsis", + "Parakeelya", + "Phemeranthus", + "Cistanthe", + "Silvaea", + "Claytonia" + ], + "n": "", + "r": "FAMILY" + }, + "Oophytum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saphesia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carpanthea": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cerochlamys": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicrocaulon": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carpobrotus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lapidaria": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dinteranthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galenia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Titanopsis": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrosanthes": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carruanthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cleretum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neohenricia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aizoon": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bergeranthus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesembryanthemum": { + "p": "Aizoaceae", + "c": [ + "Mesembryanthemum subgen. Cryophytum", + "Mesembryanthemum subgen. Mesembryanthemum", + "Mesembryanthemum subgen. Opophytum", + "Mesembryanthemum subgen. Phyllobolus", + "Mesembryanthemum subgen. Volkeranthus" + ], + "n": "", + "r": "GENUS" + }, + "Chasmatophyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nepenthes": { + "p": "Nepenthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plumbagella": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allionia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neea": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aextoxicon": { + "p": "Aextoxicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyathula": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andradea": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zeuktophyllum": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reichenbachia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pisoniella": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pinzona": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sericocoma": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barbeuia": { + "p": "Barbeuiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Achatocarpus": { + "p": "Achatocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trianthema": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amaranthus": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tribulocarpus": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleuropetalum": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichodiadema": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lagrezia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophiocarpus": { + "p": "Lophiocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aegialitis": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossosomatales": { + "p": "malvids", + "c": [ + "Aphloiaceae", + "Crossosomataceae", + "Geissolomataceae", + "Guamatelaceae", + "Ixerbaceae", + "Stachyuraceae", + "Staphyleaceae", + "Strasburgeriaceae" + ], + "n": "", + "r": "ORDER" + }, + "Chionothrix": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptothamnus": { + "p": "Berberidopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Suaedoideae": { + "p": "Chenopodiaceae", + "c": [ + "Alexandra", + "Bienertia", + "Borsczowia", + "Suaeda" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Doliocarpus": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Achyropsis": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abronia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psylliostachys": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agdestis": { + "p": "Agdestidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Froelichia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tamarix": { + "p": "Tamaricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rockia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhabdodendron": { + "p": "Rhabdodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limoniastrum": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pupalia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mollugo": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Volkensinia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plumbago": { + "p": "Plumbaginaceae", + "c": [], + "n": "leadwort", + "r": "GENUS" + }, + "Sapindales": { + "p": "malvids", + "c": [ + "Aceraceae", + "Biebersteiniaceae", + "Burseraceae", + "Hippocastanaceae", + "Kirkiaceae", + "Meliaceae", + "Nitrariaceae", + "Peganaceae", + "Simaroubaceae", + "Rutaceae", + "Sapindaceae", + "Anacardiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Centema": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trigastrotheca": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cucurbitales": { + "p": "fabids", + "c": [ + "Anisophylleaceae", + "Apodanthaceae", + "Begoniaceae", + "Coriariaceae", + "Corynocarpaceae", + "Cucurbitaceae", + "Datiscaceae", + "Tetramelaceae" + ], + "n": "", + "r": "ORDER" + }, + "Goniolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoplantago": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kewa": { + "p": "Kewaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boerhavia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vanzijlia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucaster": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agathophora": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salsoloideae": { + "p": "Chenopodiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Zygophyllales": { + "p": "fabids", + "c": [ + "Zygophyllaceae", + "Krameriaceae" + ], + "n": "", + "r": "ORDER" + }, + "Wooleya": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polpoda": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acantholimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nelsia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phaeoptilum": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nyctaginia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyrhabda": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Celastrales": { + "p": "fabids", + "c": [ + "Celastraceae", + "Lepidobotryaceae", + "Parnassiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Myricaria": { + "p": "Tamaricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phaulothamnus": { + "p": "Achatocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curatella": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triphyophyllum": { + "p": "Dioncophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lithophila": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xerosiphon": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pfaffia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psammotropha": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucosphaera": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Celosia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vassilczenkoa": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marcelliopsis": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schumacheria": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrotrema": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nototrichium": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sericorema": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mechowia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fabales": { + "p": "fabids", + "c": [ + "Fabaceae", + "Polygalaceae", + "Quillajaceae", + "Surianaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pachynema": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zaleya": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bamiania": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chenopodioideae": { + "p": "Chenopodiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Polycnemoideae": { + "p": "Amaranthaceae", + "c": [ + "Hemichroa", + "Nitrophila", + "Polycnemum", + "Surreya" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Ramisia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bosea": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Armeria": { + "p": "Plumbaginaceae", + "c": [], + "n": "thrift", + "r": "GENUS" + }, + "Tetracera": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malpighiales": { + "p": "fabids", + "c": [ + "Achariaceae", + "Balanopaceae", + "Malpighiaceae", + "Bonnetiaceae", + "Calophyllaceae", + "Caryocaraceae", + "Centroplacaceae", + "Chrysobalanaceae", + "Erythroxylaceae", + "Ctenolophonaceae", + "Dichapetalaceae", + "Elatinaceae", + "Euphroniaceae", + "Linaceae", + "Goupiaceae", + "Humiriaceae", + "Hypericaceae", + "Irvingiaceae", + "Ixonanthaceae", + "Lacistemataceae", + "Lophopyxidaceae", + "Malesherbiaceae", + "Clusiaceae", + "Medusagynaceae", + "Ochnaceae", + "Pandaceae", + "Passifloraceae", + "Peraceae", + "Phyllanthaceae", + "Picrodendraceae", + "Podostemaceae", + "Putranjivaceae", + "Quiinaceae", + "Rafflesiaceae", + "Rhizophoraceae", + "Scyphostegiaceae", + "Euphorbiaceae", + "Trigoniaceae", + "Turneraceae", + "Violaceae", + "Salicaceae" + ], + "n": "", + "r": "ORDER" + }, + "Hibbertia": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyphomeris": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyphocarpa": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neodillenia": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bukiniczia": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corispermoideae": { + "p": "Chenopodiaceae", + "c": [ + "Agriophyllum", + "Anthochlamys", + "Corispermum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Allmania": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Achyranthes": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deeringia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limonium": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camphorosmoideae": { + "p": "Chenopodiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Gomphrenoideae": { + "p": "Amaranthaceae", + "c": [ + "Blutaparon", + "Gomphrena", + "Irenella", + "Iresine", + "Philoxerus", + "Woehleria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Berberidopsis": { + "p": "Berberidopsidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Muellerolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ikonnikovia": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Huerteales": { + "p": "malvids", + "c": [ + "Dipentodontaceae", + "Gerrardinaceae", + "Petenaeaceae", + "Tapisciaceae" + ], + "n": "", + "r": "ORDER" + }, + "Digera": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Davilla": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sericocomopsis": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brassicales": { + "p": "malvids", + "c": [ + "Akaniaceae", + "Bataceae", + "Bretschneideraceae", + "Capparaceae", + "Cleomaceae", + "Emblingiaceae", + "Gyrostemonaceae", + "Moringaceae", + "Koeberliniaceae", + "Limnanthaceae", + "Brassicaceae", + "Salvadoraceae", + "Tropaeolaceae", + "Caricaceae", + "Pentadiplandraceae", + "Resedaceae", + "Setchellanthaceae", + "Tiganophytaceae", + "Tovariaceae" + ], + "n": "", + "r": "ORDER" + }, + "Geraniales": { + "p": "malvids", + "c": [ + "Francoaceae", + "Geraniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Fagales": { + "p": "fabids", + "c": [ + "Myricaceae", + "Fagaceae", + "Betulaceae", + "Casuarinaceae", + "Rhoipteleaceae", + "Nothofagaceae", + "Ticodendraceae", + "Juglandaceae" + ], + "n": "", + "r": "ORDER" + }, + "Calicorema": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Commicarpus": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Henonia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Centemopsis": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reaumuria": { + "p": "Tamaricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physena": { + "p": "Physenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coelanthum": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypertelis": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drosophyllum": { + "p": "Drosophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dyerophytum": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mirabilis": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guapira": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratostigma": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salicornioideae": { + "p": "Chenopodiaceae", + "c": [ + "Allenrolfea", + "Arthrocaulon", + "Arthroceras", + "Halocnemum", + "Halopeplis", + "Halosarcia", + "Halostachys", + "Heterostachys", + "Kalidiopsis", + "Kalidium", + "Mangleticornia", + "Microcnemum", + "Pachycornia", + "Salicornia", + "Sclerostegia", + "Tecticornia", + "Tegicornia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Psilotrichum": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myriolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limeum": { + "p": "Limeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamissoa": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quaternella": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afrolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pedersenia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pharnaceum": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenogramma": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rosales": { + "p": "fabids", + "c": [ + "Barbeyaceae", + "Rhamnaceae", + "Dirachmaceae", + "Ulmaceae", + "Cannabaceae", + "Moraceae", + "Urticaceae", + "Rosaceae", + "Elaeagnaceae" + ], + "n": "", + "r": "ORDER" + }, + "Nyssanthes": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrtales": { + "p": "malvids", + "c": [ + "Alzateaceae", + "Crypteroniaceae", + "Onagraceae", + "Heteropyxidaceae", + "Combretaceae", + "Lythraceae", + "Melastomataceae", + "Memecylaceae", + "Myrtaceae", + "Oliniaceae", + "Penaeaceae", + "Vochysiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Sericostachys": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salpianthus": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Centrostachys": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Simmondsia": { + "p": "Simmondsiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gossypianthus": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allmaniopsis": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alternanthera": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hololachna": { + "p": "Tamaricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aervoideae": { + "p": "Amaranthaceae", + "c": [ + "Aerva", + "Nothosaerva", + "Omegandra", + "Ouret", + "Paraerva", + "Ptilotus", + "Wadithamnus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Microtea": { + "p": "Microteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cuscatlania": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malvales": { + "p": "malvids", + "c": [ + "Cochlospermaceae", + "Cytinaceae", + "Bixaceae", + "Malvaceae", + "Dipterocarpaceae", + "Thymelaeaceae", + "Muntingiaceae", + "Neuradaceae", + "Cistaceae", + "Sarcolaenaceae", + "Sphaerosepalaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pleuropterantha": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Belemia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grajalesia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pandiaka": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glinus": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Popoviolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalorhizum": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acleisanthes": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guilleminea": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Charpentiera": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dillenia": { + "p": "Dilleniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paramollugo": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Suessenguthiella": { + "p": "Molluginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Habropetalum": { + "p": "Dioncophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acroglochin": { + "p": "Chenopodiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hermbstaedtia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Okenia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picramniales": { + "p": "malvids", + "c": [ + "Picramniaceae" + ], + "n": "", + "r": "ORDER" + }, + "Gisekia": { + "p": "Gisekiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Frankenia": { + "p": "Frankeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anulocaulis": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bougainvillea": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceodes": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hebanthe": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dasysphaera": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pisonia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxalidales": { + "p": "fabids", + "c": [ + "Brunelliaceae", + "Cephalotaceae", + "Connaraceae", + "Cunoniaceae", + "Elaeocarpaceae", + "Huaceae", + "Oxalidaceae" + ], + "n": "", + "r": "ORDER" + }, + "Lopriorea": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colignonia": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bakerolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tidestromia": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vanheerdea": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dioncophyllum": { + "p": "Dioncophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gladiolimon": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arthraerua": { + "p": "Amaranthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vlokia": { + "p": "Aizoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptocarpus": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tripterocalyx": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Betoideae": { + "p": "Chenopodiaceae", + "c": [ + "Aphanisma", + "Beta", + "Hablitzia", + "Oreobliton", + "Patellifolia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Caribea": { + "p": "Nyctaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saharanthus": { + "p": "Plumbaginaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stegnosperma": { + "p": "Stegnospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichostigma": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corbichonia": { + "p": "Corbichoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilgerina": { + "p": "Cervantesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrotrophe": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loropetalum": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipsacales": { + "p": "campanulids", + "c": [ + "Adoxaceae", + "Diervillaceae", + "Caprifoliaceae", + "Linnaeaceae", + "Morinaceae", + "Dipsacaceae", + "Valerianaceae" + ], + "n": "", + "r": "ORDER" + }, + "Jovibarba": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sapotaceae": { + "p": "Ericales", + "c": [ + "Chrysophylloideae", + "Iteiluma", + "Sapotoideae", + "Sarcospermatoideae" + ], + "n": "sapodilla family", + "r": "FAMILY" + }, + "Crassula": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylotelephium": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodoleia": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echeveria": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Umbilicus": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ercilla": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marcgraviaceae": { + "p": "Ericales", + "c": [ + "Marcgravia", + "Marcgraviastrum", + "Norantea", + "Ruyschia", + "Sarcopera", + "Schwartzia", + "Souroubea" + ], + "n": "shingle plant family", + "r": "FAMILY" + }, + "Hamamelis": { + "p": "Hamamelidaceae", + "c": [], + "n": "witch hazels", + "r": "GENUS" + }, + "Phacellaria": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichocladus": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sempervivella": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hilleria": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptomeria": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cercidiphyllum": { + "p": "Cercidiphyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tacitus": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meterostachys": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rosularia": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Distyliopsis": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphorogyne": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fortunearia": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetracarpaea": { + "p": "Tetracarpaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryophyllum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petiveria": { + "p": "Petiveriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asterales": { + "p": "campanulids", + "c": [ + "Alseuosmiaceae", + "Argophyllaceae", + "Campanulaceae", + "Menyanthaceae", + "Calyceraceae", + "Asteraceae", + "Goodeniaceae", + "Pentaphragmataceae", + "Phellinaceae", + "Rousseaceae", + "Stylidiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Symplocaceae": { + "p": "Ericales", + "c": [ + "Cordyloblaste", + "Symplocos" + ], + "n": "sweetleaf family", + "r": "FAMILY" + }, + "Cremnophila": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macarthuria": { + "p": "Macarthuriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinowilsonia": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Theophrastaceae": { + "p": "Ericales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Laurembergia": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachyphytum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scleropyrum": { + "p": "Cervantesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apiales": { + "p": "campanulids", + "c": [ + "Apiineae", + "Griseliniaceae", + "Pennantiaceae", + "Torricelliaceae" + ], + "n": "", + "r": "ORDER" + }, + "Diamorpha": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monococcus": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleuropterus": { + "p": "Polygonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrsinaceae": { + "p": "Ericales", + "c": [], + "n": "myrsine family", + "r": "FAMILY" + }, + "Antenoron": { + "p": "Polygonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diapensiaceae": { + "p": "Ericales", + "c": [ + "Berneuxia", + "Diapensia", + "Galax", + "Pyxidanthera", + "Schizocodon", + "Shortia" + ], + "n": "", + "r": "FAMILY" + }, + "Mitrastemonaceae": { + "p": "Ericales", + "c": [ + "Mitrastemon" + ], + "n": "", + "r": "FAMILY" + }, + "Gentianales": { + "p": "lamiids", + "c": [ + "Apocynaceae", + "Gelsemiaceae", + "Gentianaceae", + "Loganiaceae", + "Rubiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Petrosedum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ebenaceae": { + "p": "Ericales", + "c": [ + "Diospyros", + "Euclea", + "Lissocarpa", + "Maba", + "Royena" + ], + "n": "ebony family", + "r": "FAMILY" + }, + "Glischrocaryon": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kalanchoe": { + "p": "Crassulaceae", + "c": [], + "n": "Palm-Beach bells", + "r": "GENUS" + }, + "Dufrenoya": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentaphylacaceae": { + "p": "Ericales", + "c": [ + "Adinandra", + "Anneslea", + "Cleyera", + "Eurya", + "Euryodendron", + "Freziera", + "Pentaphylax", + "Symplococarpon", + "Ternstroemia", + "Visnea" + ], + "n": "", + "r": "FAMILY" + }, + "Dendromyza": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haloragodendron": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haloragis": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lenophyllum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phedimus": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Telmissa": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prometheum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriogonoideae": { + "p": "Polygonaceae", + "c": [ + "Acanthoscyphus", + "Afrobrunnichia", + "Aristocapsa", + "Centrostegia", + "Dodecahema", + "Johanneshowellia", + "Oxytheca", + "Systenotheca" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Styracaceae": { + "p": "Ericales", + "c": [ + "Alniphyllum", + "Bruinsmia", + "Changiostyrax", + "Halesia", + "Huodendron", + "Melliodendron", + "Parastyrax", + "Perkinsiodendron", + "Pterostyrax", + "Rehderodendron", + "Sinojackia", + "Styrax" + ], + "n": "storax family", + "r": "FAMILY" + }, + "Polygonoideae": { + "p": "Polygonaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Polemoniaceae": { + "p": "Ericales", + "c": [ + "Acanthogilia", + "Aliciella", + "Allophyllum", + "Bonplandia", + "Bryantiella", + "Cantua", + "Cobaea", + "Dayia", + "Eriastrum", + "Gilia", + "Giliastrum", + "Gymnosteris", + "Ipomopsis", + "Polemonium", + "Langloisia", + "Lathrocasis", + "Leptosiphon", + "Linanthus", + "Loeselia", + "Loeseliastrum", + "Microgilia", + "Microsteris", + "Collomia", + "Navarretia", + "Phlox", + "Saltugilia" + ], + "n": "phlox family", + "r": "FAMILY" + }, + "Escalloniales": { + "p": "campanulids", + "c": [ + "Escalloniaceae", + "Polyosmaceae" + ], + "n": "", + "r": "ORDER" + }, + "Fouquieriaceae": { + "p": "Ericales", + "c": [ + "Fouquieria" + ], + "n": "ocotillo family", + "r": "FAMILY" + }, + "Aichryson": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symmerioideae": { + "p": "Polygonaceae", + "c": [ + "Symmeria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Daenikera": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicoryphe": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Disanthus": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jodina": { + "p": "Cervantesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Altingia": { + "p": "Altingiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sedum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ribes": { + "p": "Grossulariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exbucklandia": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meionectes": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cotyledon": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orostachys": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthosyris": { + "p": "Cervantesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ternstroemiaceae": { + "p": "Ericales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Actinidiaceae": { + "p": "Ericales", + "c": [ + "Actinidia", + "Clematoclethra", + "Saurauia" + ], + "n": "Chinese gooseberry family", + "r": "FAMILY" + }, + "Tetrameristaceae": { + "p": "Ericales", + "c": [ + "Pelliciera", + "Pentamerista", + "Tetramerista" + ], + "n": "", + "r": "FAMILY" + }, + "Bruniales": { + "p": "campanulids", + "c": [ + "Bruniaceae", + "Columelliaceae" + ], + "n": "", + "r": "ORDER" + }, + "Theaceae": { + "p": "Ericales", + "c": [ + "Apterosperma", + "Camellia", + "Franklinia", + "Glyptocarpa", + "Gordonia", + "Hartia", + "Laplacea", + "Parapyrenaria", + "Polyspora", + "Pyrenaria", + "Schima", + "Sinopyrenaria", + "Stewartia", + "Tutcheria" + ], + "n": "tea family", + "r": "FAMILY" + }, + "Eustigma": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tylecodon": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asteropeia": { + "p": "Asteropeiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aizopsis": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypagophytum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trihaloragis": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinocrassula": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ostrearia": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maingaya": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myriophyllum": { + "p": "Haloragaceae", + "c": [], + "n": "water milfoils", + "r": "GENUS" + }, + "Meziella": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cynomorium": { + "p": "Cynomoriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphanopetalum": { + "p": "Aphanopetalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monanthes": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neostrearia": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chunia": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paeonia": { + "p": "Paeoniaceae", + "c": [], + "n": "peonies", + "r": "GENUS" + }, + "Balsaminaceae": { + "p": "Ericales", + "c": [ + "Hydrocera", + "Impatiens" + ], + "n": "touch-me-not family", + "r": "FAMILY" + }, + "Okoubaka": { + "p": "Cervantesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Distylium": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Proserpinaca": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clethraceae": { + "p": "Ericales", + "c": [ + "Clethra", + "Purdiaea" + ], + "n": "", + "r": "FAMILY" + }, + "Kitchingia": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lecythidaceae": { + "p": "Ericales", + "c": [ + "Allantoma", + "Asteranthos", + "Barringtonia", + "Bertholletia", + "Brazzeia", + "Careya", + "Cariniana", + "Chydenanthus", + "Corythophora", + "Couratari", + "Couroupita", + "Crateranthus", + "Eschweilera", + "Foetidia", + "Grias", + "Gustavia", + "Lecythis", + "Napoleonaea", + "Oubanguia", + "Petersianthus", + "Pierrina", + "Planchonia", + "Rhaptopetalum", + "Scytopetalum" + ], + "n": "Brazil nut family", + "r": "FAMILY" + }, + "Adromischus": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Penthorum": { + "p": "Penthoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dudleya": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aquifoliales": { + "p": "campanulids", + "c": [ + "Helwingiaceae", + "Aquifoliaceae", + "Phyllonomaceae" + ], + "n": "", + "r": "ORDER" + }, + "Ericaceae": { + "p": "Ericales", + "c": [ + "Arbutoideae", + "Cassiopoideae", + "Enkianthoideae", + "Epacridoideae", + "Ericoideae", + "Harrimanelloideae", + "Pyroloideae", + "Vaccinioideae" + ], + "n": "heath family", + "r": "FAMILY" + }, + "Sedella": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corylopsis": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Greenovia": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Noahdendron": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roridulaceae": { + "p": "Ericales", + "c": [ + "Roridula" + ], + "n": "", + "r": "FAMILY" + }, + "Choretrum": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cervantesia": { + "p": "Cervantesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrularia": { + "p": "Cervantesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spirogardnera": { + "p": "Amphorogynaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cardiopteridales": { + "p": "campanulids", + "c": [ + "Cardiopteridaceae", + "Stemonuraceae" + ], + "n": "", + "r": "ORDER" + }, + "Schindleria": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gallesia": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boraginales": { + "p": "lamiids", + "c": [ + "Boraginaceae", + "Codonaceae", + "Coldeniaceae", + "Cordiaceae", + "Ehretiaceae", + "Heliotropiaceae", + "Hoplestigmataceae", + "Lennoaceae", + "Namaceae", + "Hydrophyllaceae", + "Wellstediaceae" + ], + "n": "", + "r": "ORDER" + }, + "Fothergilla": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sempervivum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Molinadendron": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Matudaea": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paracryphiales": { + "p": "campanulids", + "c": [ + "Paracryphiaceae", + "Sphenostemonaceae" + ], + "n": "", + "r": "ORDER" + }, + "Graptopetalum": { + "p": "Crassulaceae", + "c": [], + "n": "leatherpetal", + "r": "GENUS" + }, + "Villadia": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thompsonella": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Staufferia": { + "p": "Cervantesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mytilaria": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sladeniaceae": { + "p": "Ericales", + "c": [ + "Ficalhoa", + "Sladenia" + ], + "n": "", + "r": "FAMILY" + }, + "Sycopsis": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pistorinia": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrathyrium": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyrillaceae": { + "p": "Ericales", + "c": [ + "Cliftonia", + "Cyrilla" + ], + "n": "", + "r": "FAMILY" + }, + "Gonocarpus": { + "p": "Haloragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Embolanthera": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Liquidambar": { + "p": "Altingiaceae", + "c": [], + "n": "sweet gum trees", + "r": "GENUS" + }, + "Seguieria": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saxifragella": { + "p": "Saxifragaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "x Sedeveria": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ledenbergia": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodiola": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarraceniaceae": { + "p": "Ericales", + "c": [ + "Darlingtonia", + "Heliamphora", + "Sarracenia" + ], + "n": "pitcher plant family", + "r": "FAMILY" + }, + "Aeonium": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudosedum": { + "p": "Crassulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parrotia": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Garryales": { + "p": "lamiids", + "c": [ + "Eucommiaceae", + "Garryaceae" + ], + "n": "", + "r": "ORDER" + }, + "Phytolacca": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Semiliquidambar": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisomeria": { + "p": "Phytolaccaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ancistrocladus": { + "p": "Ancistrocladaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Primulaceae": { + "p": "Ericales", + "c": [ + "Aegiceras", + "Amblyanthopsis", + "Amblyanthus", + "Anagallis", + "Androsace", + "Antistrophe", + "Ardisia", + "Ardisiandra", + "Asterolinon", + "Badula", + "Bonellia", + "Bryocarpum", + "Centunculus", + "Clavija", + "Conandrium", + "Coris", + "Cortusa", + "Ctenardisia", + "Cybianthus", + "Cyclamen", + "Deherainia", + "Dionysia", + "Discocalyx", + "Dodecatheon", + "Douglasia", + "Elingamita", + "Embelia", + "Emblemantha", + "Englerodaphne", + "Fittingia", + "Geissanthus", + "Glaux", + "Grammadenia", + "Heberdenia", + "Hottonia", + "Hymenandra", + "Jacquinia", + "Kaufmannia", + "Labisia", + "Loheria", + "Lysimachia", + "Maesa", + "Marantodes", + "Monoporus", + "Myrsine", + "Neomezia", + "Omphalogramma", + "Oncostemum", + "Parathesis", + "Pelletiera", + "Pleiomeris", + "Pomatosace", + "Primula", + "Rapanea", + "Sadiria", + "Samolus", + "Soldanella", + "Sredinskya", + "Stimpsonia", + "Stylogyne", + "Systellantha", + "Tapeinosperma", + "Theophrasta", + "Trientalis", + "Vitaliana", + "Votschia", + "Wallenia" + ], + "n": "primrose family", + "r": "FAMILY" + }, + "Parrotiopsis": { + "p": "Hamamelidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cherleria": { + "p": "Caryophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthobolus": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Korthalsella": { + "p": "Viscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malania": { + "p": "Ximeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vahliales": { + "p": "lamiids", + "c": [ + "Vahliaceae" + ], + "n": "", + "r": "ORDER" + }, + "Rhopalocnemis": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quinchamalium": { + "p": "Schoepfiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strombosia": { + "p": "Strombosiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kunkeliella": { + "p": "Thesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nestronia": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arceuthobium": { + "p": "Viscaceae", + "c": [], + "n": "dwarf mistletoes", + "r": "GENUS" + }, + "Oncothecales": { + "p": "lamiids", + "c": [ + "Oncothecaceae" + ], + "n": "", + "r": "ORDER" + }, + "Cornoideae": { + "p": "Cornales", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Chaunochiton": { + "p": "Aptandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hondurodendron": { + "p": "Aptandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balanophora": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urobotrya": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Engomegoma": { + "p": "Strombosiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diogoa": { + "p": "Strombosiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aptandra": { + "p": "Aptandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osyridicarpos": { + "p": "Thesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geocaulon": { + "p": "Comandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lacomucinaea": { + "p": "Thesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythropalum": { + "p": "Erythropalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Omphacomeria": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hachettea": { + "p": "Mystropetalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dulacia": { + "p": "Olacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gjellerupia": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osyris": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrangeaceae": { + "p": "Cornales", + "c": [ + "Carpenteria", + "Deutzia", + "Fendlera", + "Fendlerella", + "Jamesia", + "Kirengeshoma", + "Philadelphus", + "Whipplea" + ], + "n": "hydrangea family", + "r": "FAMILY" + }, + "Viscum": { + "p": "Viscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anacolosa": { + "p": "Aptandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cornaceae": { + "p": "Cornales", + "c": [ + "Alangium", + "Chamaepericlymenum", + "Cornus", + "Swida" + ], + "n": "dogwood family", + "r": "FAMILY" + }, + "Langsdorffia": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Medusandra": { + "p": "Peridiscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corynaea": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochanostachys": { + "p": "Coulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metteniusales": { + "p": "lamiids", + "c": [ + "Metteniusaceae" + ], + "n": "", + "r": "ORDER" + }, + "Davidioideae": { + "p": "Cornales", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Phanerodiscus": { + "p": "Aptandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Icacinales": { + "p": "lamiids", + "c": [ + "Icacinaceae" + ], + "n": "", + "r": "ORDER" + }, + "Lamiales": { + "p": "lamiids", + "c": [ + "Acanthaceae", + "Gesneriaceae", + "Byblidaceae", + "Calceolariaceae", + "Carlemanniaceae", + "Scrophulariaceae", + "Lentibulariaceae", + "Linderniaceae", + "Martyniaceae", + "Mazaceae", + "Lamiaceae", + "Oleaceae", + "Orobanchaceae", + "Paulowniaceae", + "Phrymaceae", + "Plocospermataceae", + "Schlegeliaceae", + "Pedaliaceae", + "Plantaginaceae", + "Stilbaceae", + "Tetrachondraceae", + "Thomandersiaceae", + "Bignoniaceae", + "Verbenaceae", + "Wightiaceae" + ], + "n": "", + "r": "ORDER" + }, + "Colpoon": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exocarpos": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrastylidium": { + "p": "Strombosiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cansjera": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austroamericium": { + "p": "Thesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrophthora": { + "p": "Viscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mida": { + "p": "Nanodeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loasaceae": { + "p": "Cornales", + "c": [ + "Aosa", + "Blumenbachia", + "Caiophora", + "Cevallia", + "Chichicaste", + "Eucnide", + "Fuertesia", + "Gronovia", + "Huidobria", + "Kissenia", + "Klaprothia", + "Loasa", + "Mentzelia", + "Nasa", + "Petalonyx", + "Plakothira", + "Presliophytum", + "Schismocarpus", + "Scyphanthus", + "Xylopodia" + ], + "n": "", + "r": "FAMILY" + }, + "Antidaphne": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Opilia": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrostachyaceae": { + "p": "Cornales", + "c": [ + "Hydrostachys" + ], + "n": "", + "r": "FAMILY" + }, + "Myoschilos": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cathedra": { + "p": "Aptandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curupira": { + "p": "Ximeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophophytum": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dactylanthus": { + "p": "Mystropetalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcophyte": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidoceras": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ombrophytum": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schoepfia": { + "p": "Schoepfiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhoiacarpos": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scybalium": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Champereia": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strombosiopsis": { + "p": "Strombosiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peridiscus": { + "p": "Peridiscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maburea": { + "p": "Erythropalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptychopetalum": { + "p": "Olacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heisteria": { + "p": "Erythropalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thesidium": { + "p": "Thesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Santalum": { + "p": "Santalaceae", + "c": [], + "n": "sandalwoods", + "r": "GENUS" + }, + "Helosis": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ginalloa": { + "p": "Viscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lathrophytum": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ongokea": { + "p": "Aptandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Olax": { + "p": "Olacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mastixioideae": { + "p": "Cornales", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Mystropetalon": { + "p": "Mystropetalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agonandra": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentarhopalopilia": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harmandia": { + "p": "Aptandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thesium": { + "p": "Thesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thonningia": { + "p": "Balanophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Choristylis": { + "p": "Iteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arjona": { + "p": "Schoepfiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Comandra": { + "p": "Comandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eubrachion": { + "p": "Santalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nyssaceae": { + "p": "Cornales", + "c": [ + "Camptotheca", + "Davidia", + "Diplopanax", + "Mastixia", + "Nyssa" + ], + "n": "", + "r": "FAMILY" + }, + "Daphniphyllum": { + "p": "Daphniphyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Octoknema": { + "p": "Octoknemaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Itea": { + "p": "Iteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grubbiaceae": { + "p": "Cornales", + "c": [ + "Grubbia" + ], + "n": "", + "r": "FAMILY" + }, + "Soyauxia": { + "p": "Peridiscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Notothixos": { + "p": "Viscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curtisiaceae": { + "p": "Cornales", + "c": [ + "Curtisia" + ], + "n": "", + "r": "FAMILY" + }, + "Ximenia": { + "p": "Ximeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Whittonia": { + "p": "Peridiscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melientha": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nanodea": { + "p": "Nanodeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phoradendron": { + "p": "Viscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterostemon": { + "p": "Iteaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepionurus": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scorodocarpus": { + "p": "Strombosiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buckleya": { + "p": "Thesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhopalopilia": { + "p": "Opiliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Misodendrum": { + "p": "Misodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Minquartia": { + "p": "Coulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coula": { + "p": "Coulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solanales": { + "p": "lamiids", + "c": [ + "Hydroleaceae", + "Montiniaceae", + "Convolvulaceae", + "Solanaceae", + "Sphenocleaceae" + ], + "n": "", + "r": "ORDER" + }, + "Pontederia subgen. Monochoria": { + "p": "Pontederia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Pontederia subgen. Cabanisia": { + "p": "Pontederia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Pontederia subgen. Eichhornia": { + "p": "Pontederia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Danthonioideae": { + "p": "PACMAD clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Arundinoideae": { + "p": "PACMAD clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Aristidoideae": { + "p": "PACMAD clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Pontederia subgen. Pontederia": { + "p": "Pontederia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Bakerantha": { + "p": "Hechtioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesoamerantha": { + "p": "Hechtioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chloridoideae": { + "p": "PACMAD clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Pontederia subgen. Oshunae": { + "p": "Pontederia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Micrairoideae": { + "p": "PACMAD clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Panicoideae": { + "p": "PACMAD clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Hechtia": { + "p": "Hechtioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudaraeococcus": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rokautskyia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hoplocryptanthus": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Disteganthus": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fernseea": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoglaziovia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudananas": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bromelia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ananas": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brewcaria": { + "p": "Navioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptanthus": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aechmea": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ronnbergia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Billbergia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eduandrea": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Araeococcus": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthostachys": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptocalyx": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wittrockia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nidularium": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lindmania": { + "p": "Lindmanioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chevaliera": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Navia": { + "p": "Navioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ayensua": { + "p": "Brocchinioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androlepis": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthophytum": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Greigia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Forzzaea": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lymania": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wittmackia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brocchinia": { + "p": "Brocchinioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fascicularia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lapanthus": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochagavia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Karawata": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nypa": { + "p": "Nypoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quesnelia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hohenbergiopsis": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canistropsis": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canistrum": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sincoraea": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Edmundoa": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Portea": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deinacanthon": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hohenbergia": { + "p": "Bromelioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pitcairnia": { + "p": "Pitcairnioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bambusoideae": { + "p": "BOP clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "core Tillandsioideae": { + "p": "Tillandsioideae", + "c": [], + "n": "", + "r": "CLADE" + }, + "Fosterella": { + "p": "Pitcairnioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deuterocohnia": { + "p": "Pitcairnioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dyckia": { + "p": "Pitcairnioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abromeitiella": { + "p": "Pitcairnioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oryzoideae": { + "p": "BOP clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Puya": { + "p": "Puyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pooideae": { + "p": "BOP clade", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Pepinia": { + "p": "Pitcairnioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Encholirium": { + "p": "Pitcairnioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halophytum": { + "p": "Halophytaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Basella": { + "p": "Basellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Talinopsis": { + "p": "Anacampserotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Talinum": { + "p": "Talinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anredera": { + "p": "Basellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grahamia": { + "p": "Anacampserotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ullucus": { + "p": "Basellaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Talinella": { + "p": "Talinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anacampseros": { + "p": "Anacampserotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leuenbergerioideae": { + "p": "Cactaceae", + "c": [ + "Leuenbergeria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cactoideae": { + "p": "Cactaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Maihuenioideae": { + "p": "Cactaceae", + "c": [ + "Maihuenia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Blossfeldioideae": { + "p": "Cactaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Opuntioideae": { + "p": "Cactaceae", + "c": [ + "Airampoa", + "Austrocylindropuntia", + "Brasiliopuntia", + "Consolea", + "Corynopuntia", + "Cumulopuntia", + "Cylindropuntia", + "Grusonia", + "Maihueniopsis", + "Micropuntia", + "Miqueliopuntia", + "Nopalea", + "Pereskiopsis", + "Opuntia", + "Pterocactus", + "Punotia", + "Quiabentia", + "Salmonopuntia", + "Tacinga", + "Tephrocactus", + "Tunilla" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pereskioideae": { + "p": "Cactaceae", + "c": [ + "Pereskia", + "Rhodocactus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Parakeelya": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alluaudia": { + "p": "Didiereaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lyallia": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Montiopsis": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceraria": { + "p": "Didiereaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lewisiopsis": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alluaudiopsis": { + "p": "Didiereaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lewisia": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lenzia": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Portulaca": { + "p": "Portulacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Montia": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cistanthe": { + "p": "Montiaceae", + "c": [], + "n": "pussypaws", + "r": "GENUS" + }, + "Silvaea": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decarya": { + "p": "Didiereaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyptridium": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Portulacaria": { + "p": "Didiereaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyptrotheca": { + "p": "Didiereaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phemeranthus": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Claytonia": { + "p": "Montiaceae", + "c": [], + "n": "springbeauties", + "r": "GENUS" + }, + "Calandrinia": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hectorella": { + "p": "Montiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didierea": { + "p": "Didiereaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesembryanthemum subgen. Phyllobolus": { + "p": "Mesembryanthemum", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Mesembryanthemum subgen. Volkeranthus": { + "p": "Mesembryanthemum", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Mesembryanthemum subgen. Opophytum": { + "p": "Mesembryanthemum", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Mesembryanthemum subgen. Mesembryanthemum": { + "p": "Mesembryanthemum", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Mesembryanthemum subgen. Cryophytum": { + "p": "Mesembryanthemum", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Biebersteiniaceae": { + "p": "Sapindales", + "c": [ + "Biebersteinia" + ], + "n": "", + "r": "FAMILY" + }, + "Guamatelaceae": { + "p": "Crossosomatales", + "c": [ + "Guamatela" + ], + "n": "", + "r": "FAMILY" + }, + "Anisophylleaceae": { + "p": "Cucurbitales", + "c": [ + "Anisophyllea", + "Combretocarpus", + "Poga", + "Polygonanthus" + ], + "n": "", + "r": "FAMILY" + }, + "Staphyleaceae": { + "p": "Crossosomatales", + "c": [ + "Euscaphis", + "Staphylea", + "Turpinia" + ], + "n": "", + "r": "FAMILY" + }, + "Anacardiaceae": { + "p": "Sapindales", + "c": [ + "'Hermogenodendron'", + "Abrahamia", + "Actinocheita", + "Allospondias", + "Amphipterygium", + "Anacardium", + "Androtium", + "Antrocaryon", + "Apterokarpos", + "Astronium", + "Attilaea", + "Baronia", + "Blepharocarya", + "Bonetiella", + "Bouea", + "Buchanania", + "Campnosperma", + "Campylopetalum", + "Cardenasiodendron", + "Choerospondias", + "Comocladia", + "Cotinus", + "Cyrtocarpa", + "Dobinea", + "Dracontomelon", + "Drimycarpus", + "Euroschinus", + "Faguetia", + "Fegimanra", + "Gluta", + "Haplorhus", + "Harpephyllum", + "Heeria", + "Holigarna", + "Lannea", + "Laurophyllus", + "Lithraea", + "Loxopterygium", + "Loxostylis", + "Malosma", + "Mangifera", + "Mauria", + "Melanochyla", + "Melanorrhoea", + "Metopium", + "Micronychia", + "Mosquitoxylum", + "Nothopegia", + "Ochoterenaea", + "Operculicarya", + "Orthopterygium", + "Ozoroa", + "Pachycormus", + "Parishia", + "Pegia", + "Pentaspadon", + "Pistacia", + "Pleiogynium", + "Poupartia", + "Poupartiopsis", + "Protorhus", + "Pseudosmodingium", + "Pseudospondias", + "Rhodosphaera", + "Rhus", + "Schinopsis", + "Schinus", + "Sclerocarya", + "Searsia", + "Semecarpus", + "Smodingium", + "Sorindeia", + "Spondias", + "Swintonia", + "Tapirira", + "Thyrsodium", + "Toxicodendron", + "Trichoscypha" + ], + "n": "sumac family", + "r": "FAMILY" + }, + "Geissolomataceae": { + "p": "Crossosomatales", + "c": [ + "Geissoloma" + ], + "n": "", + "r": "FAMILY" + }, + "Crossosomataceae": { + "p": "Crossosomatales", + "c": [ + "Apacheria", + "Crossosoma", + "Glossopetalon", + "Velascoa" + ], + "n": "", + "r": "FAMILY" + }, + "Stachyuraceae": { + "p": "Crossosomatales", + "c": [ + "Stachyurus" + ], + "n": "", + "r": "FAMILY" + }, + "Strasburgeriaceae": { + "p": "Crossosomatales", + "c": [ + "Ixerba", + "Strasburgeria" + ], + "n": "", + "r": "FAMILY" + }, + "Apodanthaceae": { + "p": "Cucurbitales", + "c": [ + "Apodanthes", + "Pilostyles" + ], + "n": "", + "r": "FAMILY" + }, + "Suaeda": { + "p": "Suaedoideae", + "c": [], + "n": "sea-blites", + "r": "GENUS" + }, + "Ixerbaceae": { + "p": "Crossosomatales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Rutaceae": { + "p": "Sapindales", + "c": [ + "Amyridoideae", + "Aurantioideae", + "Cneoroideae", + "Haplophylloideae", + "Rutoideae", + "Zanthoxyloideae" + ], + "n": "rue family", + "r": "FAMILY" + }, + "Peganaceae": { + "p": "Sapindales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Meliaceae": { + "p": "Sapindales", + "c": [ + "Aglaia", + "Anthocarapa", + "Aphanamixis", + "Astrotrichilia", + "Azadirachta", + "Cabralea", + "Calodecaryia", + "Capuronianthus", + "Carapa", + "Cedrela", + "Chisocheton", + "Chukrasia", + "Cipadessa", + "Didymocheton", + "Dysoxylum", + "Ekebergia", + "Entandrophragma", + "Epicharis", + "Goniocheton", + "Guarea", + "Heckeldora", + "Heynea", + "Humbertioturraea", + "Khaya", + "Lansium", + "Lepidotrichilia", + "Leplaea", + "Lovoa", + "Swietenia", + "Malleastrum", + "Melia", + "Munronia", + "Naregamia", + "Neobeguea", + "Neoguarea", + "Nymania", + "Owenia", + "Prasoxylon", + "Pseudobersama", + "Pseudocarapa", + "Pseudocedrela", + "Pseudoclausena", + "Pterorhachis", + "Quivisianthe", + "Reinwardtiodendron", + "Ruagea", + "Sandoricum", + "Schmardaea", + "Soymida", + "Sphaerosacme", + "Synoum", + "Toona", + "Trichilia", + "Turraea", + "Turraeanthus", + "Vavaea", + "Walsura", + "Xylocarpus" + ], + "n": "mahogany family", + "r": "FAMILY" + }, + "Alexandra": { + "p": "Suaedoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aceraceae": { + "p": "Sapindales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Simaroubaceae": { + "p": "Sapindales", + "c": [ + "Ailanthus", + "Amaroria", + "Brucea", + "Castela", + "Eurycoma", + "Gymnostemon", + "Hannoa", + "Holacantha", + "Homalolepis", + "Leitneria", + "Nothospondias", + "Odyendea", + "Perriera", + "Picrasma", + "Picrolemma", + "Pierreodendron", + "Quassia", + "Samadera", + "Simaba", + "Simarouba", + "Soulamea" + ], + "n": "quassia family", + "r": "FAMILY" + }, + "Hippocastanaceae": { + "p": "Sapindales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Kirkiaceae": { + "p": "Sapindales", + "c": [ + "Kirkia" + ], + "n": "", + "r": "FAMILY" + }, + "Nitrariaceae": { + "p": "Sapindales", + "c": [ + "Malacocarpus", + "Nitraria", + "Peganum", + "Tetradiclis" + ], + "n": "", + "r": "FAMILY" + }, + "Sapindaceae": { + "p": "Sapindales", + "c": [ + "Alatococcus", + "Alectryon", + "Allophylastrum", + "Amesiodendron", + "Aporrhiza", + "Arytera", + "Atalaya", + "Balsas", + "Beguea", + "Blighia", + "Blighiopsis", + "Blomia", + "Camptolepis", + "Castanospora", + "Chimborazoa", + "Chouxia", + "Chytranthus", + "Cnesmocarpon", + "Conchopetalum", + "Cubilia", + "Cupania", + "Cupaniopsis", + "Deinbollia", + "Delavaya", + "Dictyoneura", + "Dilodendron", + "Dimocarpus", + "Diploglottis", + "Dodonaeoideae", + "Elattostachys", + "Eriocoelum", + "Erioglossum", + "Erythrophysa", + "Gereaua", + "Glenniea", + "Gloeocarpus", + "Gongrodiscus", + "Guioa", + "Haplocoelopsis", + "Haplocoelum", + "Hebecoccus", + "Hippocastanoideae", + "Hirania", + "Hornea", + "Jagera", + "Koelreuteria", + "Laccodiscus", + "Lecaniodiscus", + "Lepiderema", + "Lepidocupania", + "Lepidopetalum", + "Lepisanthes", + "Litchi", + "Lychnodiscus", + "Macphersonia", + "Matayba", + "Mischarytera", + "Mischocarpus", + "Molinaea", + "Neoarytera", + "Neotina", + "Nephelium", + "Osmelia", + "Otonephelium", + "Otophora", + "Pancovia", + "Pappea", + "Paranephelium", + "Pavieasia", + "Pentascyphus", + "Phyllotrichum", + "Placioscyphus", + "Placodiscus", + "Plagioscyphus", + "Podonephelium", + "Pometia", + "Porocystis", + "Pseudima", + "Pseudopteris", + "Radlkofera", + "Rhysotoechia", + "Sapindoideae", + "Sapindus", + "Sarcopteryx", + "Sarcotoechia", + "Schleichera", + "Scyphonychium", + "Sinoradlkofera", + "Sisyrolepis", + "Smelophyllum", + "Stadmannia", + "Stadtmannia", + "Stocksia", + "Storthocalyx", + "Synima", + "Thouinidium", + "Tina", + "Tinopsis", + "Toechima", + "Toulicia", + "Trigonachras", + "Tripterodendron", + "Tristira", + "Tristiropsis", + "Tsingya", + "Ungnadia", + "Vouarana", + "Xanthoceroideae", + "Xerospermum", + "Zollingeria" + ], + "n": "soapberry family", + "r": "FAMILY" + }, + "Borsczowia": { + "p": "Suaedoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bienertia": { + "p": "Suaedoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burseraceae": { + "p": "Sapindales", + "c": [ + "Ambilobea", + "Aucoumea", + "Beiselia", + "Boswellia", + "Bursera", + "Canarium", + "Commiphora", + "Crepidospermum", + "Dacryodes", + "Garuga", + "Haplolobus", + "Protium", + "Santiria", + "Scutinanthe", + "Tetragastris", + "Trattinnickia", + "Triomma" + ], + "n": "frankincense family", + "r": "FAMILY" + }, + "Aphloiaceae": { + "p": "Crossosomatales", + "c": [ + "Aphloia" + ], + "n": "", + "r": "FAMILY" + }, + "Datiscaceae": { + "p": "Cucurbitales", + "c": [ + "Datisca" + ], + "n": "", + "r": "FAMILY" + }, + "Zygophyllaceae": { + "p": "Zygophyllales", + "c": [ + "Larreoideae", + "Morkillioideae", + "Seetzenioideae", + "Tribuloideae", + "Zygophylloideae" + ], + "n": "creosote-bush family", + "r": "FAMILY" + }, + "Coriariaceae": { + "p": "Cucurbitales", + "c": [ + "Coriaria" + ], + "n": "", + "r": "FAMILY" + }, + "Krameriaceae": { + "p": "Zygophyllales", + "c": [ + "Krameria" + ], + "n": "", + "r": "FAMILY" + }, + "Tetramelaceae": { + "p": "Cucurbitales", + "c": [ + "Octomeles", + "Tetrameles" + ], + "n": "", + "r": "FAMILY" + }, + "Begoniaceae": { + "p": "Cucurbitales", + "c": [ + "Begonia", + "Hillebrandia" + ], + "n": "begonia family", + "r": "FAMILY" + }, + "Cucurbitaceae": { + "p": "Cucurbitales", + "c": [ + "Cucumis x Cucurbita" + ], + "n": "cucumber family", + "r": "FAMILY" + }, + "Corynocarpaceae": { + "p": "Cucurbitales", + "c": [ + "Corynocarpus" + ], + "n": "", + "r": "FAMILY" + }, + "Quillajaceae": { + "p": "Fabales", + "c": [ + "Quillaja" + ], + "n": "", + "r": "FAMILY" + }, + "Celastraceae": { + "p": "Celastrales", + "c": [ + "Acanthothamnus", + "Allocassine", + "Apatophyllum", + "Bequaertia", + "Brassiantha", + "Brexia", + "Brexiella", + "Canotia", + "Cassine", + "Catha", + "Celastrus", + "Cheiloclinium", + "Crossopetalum", + "Denhamia", + "Dicarpellum", + "Dinghoua", + "Elaeodendron", + "Empleuridium", + "Euonymus", + "Evonymopsis", + "Fraunhofera", + "Gloveria", + "Glyptopetalum", + "Goniodiscus", + "Gyminda", + "Gymnosporia", + "Hartogiopsis", + "Haydenoxylon", + "Hedraianthera", + "Hexaspora", + "Hippocrateoideae", + "Hypsophila", + "Kokoona", + "Lauridia", + "Lepuropetalon", + "Lophopetalum", + "Lydenburgia", + "Macgregoria", + "Maurocenia", + "Maytenus", + "Menepetalum", + "Microtropis", + "Monimopetalum", + "Monteverdia", + "Mortonia", + "Moya", + "Mystroxylon", + "Orthosphenia", + "Parnassia", + "Paxistima", + "Peripterygia", + "Peritassa", + "Platypterocarpus", + "Plenckia", + "Pleurostylia", + "Polycardia", + "Pottingeria", + "Psammomoya", + "Pseudosalacia", + "Ptelidium", + "Pterocelastrus", + "Putterlickia", + "Quetzalia", + "Robsonodendron", + "Rzedowskia", + "Salacia", + "Salacighia", + "Salaciopsis", + "Salvadoropsis", + "Sarawakodendron", + "Schaefferia", + "Siphonodon", + "Stackhousia", + "Tetrasiphon", + "Thyrsosalacia", + "Tontelea", + "Torralbasia", + "Tricerma", + "Tripterococcus", + "Tripterygium", + "Wilczekra", + "Wimmeria", + "Xylonymus", + "Zinowiewia" + ], + "n": "bittersweet family", + "r": "FAMILY" + }, + "Parnassiaceae": { + "p": "Celastrales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Surianaceae": { + "p": "Fabales", + "c": [ + "Cadellia", + "Guilfoylia", + "Recchia", + "Stylobasium", + "Suriana" + ], + "n": "", + "r": "FAMILY" + }, + "Polygalaceae": { + "p": "Fabales", + "c": [ + "Acanthocladus", + "Asemeia", + "Atroxima", + "Badiera", + "Balgoya", + "Barnhartia", + "Bredemeyera", + "Caamembeca", + "Carpolobia", + "Comesperma", + "Diclidanthera", + "Epirixanthes", + "Eriandra", + "Gymnospora", + "Hebecarpa", + "Heterosamara", + "Hualania", + "Monnina", + "Monrosia", + "Moutabea", + "Muraltia", + "Phlebotaenia", + "Polygala", + "Polygaloides", + "Rhamphopetalum", + "Rhinotropis", + "Salomonia", + "Securidaca", + "Xanthophyllum" + ], + "n": "", + "r": "FAMILY" + }, + "Surreya": { + "p": "Polycnemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nitrophila": { + "p": "Polycnemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fabaceae": { + "p": "Fabales", + "c": [ + "Caesalpinioideae", + "Ceratonia clade", + "Cercidoideae", + "Detarioideae", + "Dialioideae", + "Duparquetioideae", + "Papilionoideae" + ], + "n": "pea family", + "r": "FAMILY" + }, + "Hemichroa": { + "p": "Polycnemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidobotryaceae": { + "p": "Celastrales", + "c": [ + "Lepidobotrys", + "Ruptiliocarpon" + ], + "n": "", + "r": "FAMILY" + }, + "Polycnemum": { + "p": "Polycnemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agriophyllum": { + "p": "Corispermoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malesherbiaceae": { + "p": "Malpighiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Peraceae": { + "p": "Malpighiales", + "c": [ + "Clutia", + "Pera", + "Pogonophora" + ], + "n": "", + "r": "FAMILY" + }, + "Putranjivaceae": { + "p": "Malpighiales", + "c": [ + "Drypetes", + "Putranjiva", + "Sibangea" + ], + "n": "", + "r": "FAMILY" + }, + "Caryocaraceae": { + "p": "Malpighiales", + "c": [ + "Anthodiscus", + "Caryocar" + ], + "n": "", + "r": "FAMILY" + }, + "Bonnetiaceae": { + "p": "Malpighiales", + "c": [ + "Archytaea", + "Bonnetia", + "Ploiarium" + ], + "n": "", + "r": "FAMILY" + }, + "Lophopyxidaceae": { + "p": "Malpighiales", + "c": [ + "Lophopyxis" + ], + "n": "", + "r": "FAMILY" + }, + "Anthochlamys": { + "p": "Corispermoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Centroplacaceae": { + "p": "Malpighiales", + "c": [ + "Bhesa", + "Centroplacus" + ], + "n": "", + "r": "FAMILY" + }, + "Salicaceae": { + "p": "Malpighiales", + "c": [ + "Scyphostegioideae" + ], + "n": "willow family", + "r": "FAMILY" + }, + "Humiriaceae": { + "p": "Malpighiales", + "c": [ + "Duckesia", + "Endopleura", + "Humiria", + "Humiriastrum", + "Sacoglottis", + "Schistostemon", + "Vantanea" + ], + "n": "", + "r": "FAMILY" + }, + "Quiinaceae": { + "p": "Malpighiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Rafflesiaceae": { + "p": "Malpighiales", + "c": [ + "Rafflesia", + "Rhizanthes", + "Sapria" + ], + "n": "", + "r": "FAMILY" + }, + "Podostemaceae": { + "p": "Malpighiales", + "c": [ + "Podostemoideae", + "Tristichoideae", + "Weddellinoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Irvingiaceae": { + "p": "Malpighiales", + "c": [ + "Desbordesia", + "Irvingia", + "Klainedoxa" + ], + "n": "", + "r": "FAMILY" + }, + "Trigoniaceae": { + "p": "Malpighiales", + "c": [ + "Trigonia", + "Trigoniastrum" + ], + "n": "", + "r": "FAMILY" + }, + "Hypericaceae": { + "p": "Malpighiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Elatinaceae": { + "p": "Malpighiales", + "c": [ + "Bergia", + "Elatine" + ], + "n": "", + "r": "FAMILY" + }, + "Clusiaceae": { + "p": "Malpighiales", + "c": [], + "n": "mangosteen family", + "r": "FAMILY" + }, + "Euphorbiaceae": { + "p": "Malpighiales", + "c": [ + "Acalyphoideae", + "Crotonoideae", + "Euphorbioideae" + ], + "n": "spurge family", + "r": "FAMILY" + }, + "Malpighiaceae": { + "p": "Malpighiales", + "c": [ + "Acmanthera", + "Acridocarpus", + "Adelphia", + "Aenigmatanthera", + "Alicia", + "Amorimia", + "Aspicarpa", + "Aspidopterys", + "Banisteriopsis", + "Barnebya", + "Blepharandra", + "Brachylophon", + "Bronwenia", + "Bunchosia", + "Burdachia", + "Byrsonima", + "Calcicola", + "Callaeum", + "Camarea", + "Carolus", + "Caucanthus", + "Christianella", + "Coleostachys", + "Cordobia", + "Diacidia", + "Diaspis", + "Dicella", + "Digoniopterys", + "Dinemagonum", + "Dinemandra", + "Diplopterys", + "Echinopterys", + "Ectopopterys", + "Excentradenia", + "Flabellaria", + "Flabellariopsis", + "Gallardoa", + "Galphimia", + "Gaudichaudia", + "Glandonia", + "Heladena", + "Henleophytum", + "Heteropterys", + "Hiptage", + "Hiraea", + "Janusia", + "Jubelina", + "Lasiocarpus", + "Lophanthera", + "Lophopterys", + "Madagasikaria", + "Malpighia", + "Malpighiodes", + "Mascagnia", + "Mcvaughia", + "Mezia", + "Microsteira", + "Mionandra", + "Niedenzuella", + "Peixotoa", + "Philgamia", + "Psychopterys", + "Pterandra", + "Ptilochaeta", + "Rhynchophora", + "Ryssopterys", + "Spachea", + "Sphedamnocarpus", + "Stigmaphyllon", + "Tetrapterys", + "Thryallis", + "Triaspis", + "Tricomaria", + "Triopterys", + "Tristellateia", + "Verrucularina" + ], + "n": "Barbados cherry family", + "r": "FAMILY" + }, + "Calophyllaceae": { + "p": "Malpighiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Lacistemataceae": { + "p": "Malpighiales", + "c": [ + "Lacistema", + "Lozania" + ], + "n": "", + "r": "FAMILY" + }, + "Linaceae": { + "p": "Malpighiales", + "c": [ + "Adenolinum", + "Anisadenia", + "Cliococca", + "Durandea", + "Hebepetalum", + "Hesperolinon", + "Hugonia", + "Indorouchera", + "Linum", + "Millegrana", + "Philbornea", + "Radiola", + "Reinwardtia", + "Roucheria", + "Sclerolinon", + "Tirpitzia" + ], + "n": "flax family", + "r": "FAMILY" + }, + "Ochnaceae": { + "p": "Malpighiales", + "c": [ + "Adenanthe", + "Adenarake", + "Blastemanthus", + "Brackenridgea", + "Campylospermum", + "Cespedesia", + "Diporidium", + "Discladium", + "Elvasia", + "Euthemis", + "Fleurydora", + "Froesia", + "Godoya", + "Gomphia", + "Idertia", + "Indosinia", + "Indovethia", + "Krukoviella", + "Lacunaria", + "Lophira", + "Luxemburgia", + "Medusagyne", + "Neckia", + "Ochna", + "Ouratea", + "Perissocarpa", + "Philacra", + "Poecilandra", + "Quiina", + "Rhabdophyllum", + "Rhytidanthera", + "Sauvagesia", + "Schuurmansia", + "Schuurmansiella", + "Testulea", + "Touroulia", + "Tyleria", + "Wallacea" + ], + "n": "", + "r": "FAMILY" + }, + "Ixonanthaceae": { + "p": "Malpighiales", + "c": [ + "Allantospermum", + "Cyrillopsis", + "Ixonanthes", + "Ochthocosmus", + "Phyllocosmus" + ], + "n": "", + "r": "FAMILY" + }, + "Violaceae": { + "p": "Malpighiales", + "c": [ + "Agatea", + "Allexis", + "Amphirrhox", + "Anchietea", + "Corynostylis", + "Decorsella", + "Fusispermum", + "Gloeospermum", + "Hekkingia", + "Hybanthopsis", + "Hybanthus", + "Isodendrion", + "Ixchelia", + "Leonia", + "Mayanaea", + "Melicytus", + "Noisettia", + "Orthion", + "Paypayrola", + "Pigea", + "Pombalia", + "Rinorea", + "Rinoreocarpus", + "Schweiggeria", + "Scyphellandra", + "Viola" + ], + "n": "violet family", + "r": "FAMILY" + }, + "Balanopaceae": { + "p": "Malpighiales", + "c": [ + "Balanops" + ], + "n": "", + "r": "FAMILY" + }, + "Scyphostegiaceae": { + "p": "Malpighiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Passifloraceae": { + "p": "Malpighiales", + "c": [ + "Adenia", + "Adenoa", + "Afroqueta", + "Ancistrothyrsus", + "Androsiphonia", + "Arboa", + "Barteria", + "Basananthe", + "Crossostemma", + "Deidamia", + "Dilkea", + "Efulensia", + "Erblichia", + "Hyalocalyx", + "Jaracatia", + "Loewia", + "Malesherbia", + "Mathurina", + "Mitostemma", + "Oxossia", + "Paropsia", + "Passiflora", + "Pibirioideae", + "Piriqueta", + "Schlechterina", + "Smeathmannia", + "Stapfiella", + "Streptopetalum", + "Tetrastylis", + "Tricliceras", + "Turnera", + "Viridivia" + ], + "n": "passionflower famly", + "r": "FAMILY" + }, + "Pandaceae": { + "p": "Malpighiales", + "c": [ + "Galearia", + "Microdesmis", + "Panda" + ], + "n": "", + "r": "FAMILY" + }, + "Euphroniaceae": { + "p": "Malpighiales", + "c": [ + "Euphronia" + ], + "n": "", + "r": "FAMILY" + }, + "Ctenolophonaceae": { + "p": "Malpighiales", + "c": [ + "Ctenolophon" + ], + "n": "", + "r": "FAMILY" + }, + "Chrysobalanaceae": { + "p": "Malpighiales", + "c": [ + "Acioa", + "Afrolicania", + "Angelesia", + "Atuna", + "Bafodeya", + "Chrysobalanus", + "Cordillera", + "Couepia", + "Dactyladenia", + "Exellodendron", + "Gaulettia", + "Geobalanus", + "Grangeria", + "Hirtella", + "Hunga", + "Hymenopus", + "Kostermanthus", + "Leptobalanus", + "Licania", + "Magnistipula", + "Maranthes", + "Microdesmia", + "Moquilea", + "Neocarya", + "Parastemon", + "Parinari", + "Parinariopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Achariaceae": { + "p": "Malpighiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Goupiaceae": { + "p": "Malpighiales", + "c": [ + "Goupia" + ], + "n": "", + "r": "FAMILY" + }, + "Picrodendraceae": { + "p": "Malpighiales", + "c": [ + "Androstachys", + "Aristogeitonia", + "Austrobuxus", + "Choriceras", + "Dimorphocalyx", + "Dissiliaria", + "Hyaenanche", + "Micrantheum", + "Neoroepera", + "Oldfieldia", + "Petalostigma", + "Picrodendron", + "Piranhea", + "Podocalyx", + "Sankowskya", + "Scagea", + "Stachyandra", + "Stachystemon", + "Tetracoccus", + "Whyanbeelia" + ], + "n": "", + "r": "FAMILY" + }, + "Phyllanthaceae": { + "p": "Malpighiales", + "c": [ + "Antidesmatoideae", + "Phyllanthoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Turneraceae": { + "p": "Malpighiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Erythroxylaceae": { + "p": "Malpighiales", + "c": [ + "Aneulophus", + "Erythroxylum", + "Nectaropetalum", + "Pinacopodium" + ], + "n": "coca family", + "r": "FAMILY" + }, + "Dichapetalaceae": { + "p": "Malpighiales", + "c": [ + "Dichapetalum", + "Stephanopodium", + "Tapura" + ], + "n": "", + "r": "FAMILY" + }, + "Rhizophoraceae": { + "p": "Malpighiales", + "c": [ + "Anopyxis", + "Blepharistemma", + "Bruguiera", + "Carallia", + "Cassipourea", + "Ceriops", + "Crossostylis", + "Dactylopetalum", + "Gynotroches", + "Kandelia", + "Macarisia", + "Paradrypetes", + "Pellacalyx", + "Rhizophora", + "Sterigmapetalum" + ], + "n": "red mangrove family", + "r": "FAMILY" + }, + "Corispermum": { + "p": "Corispermoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Medusagynaceae": { + "p": "Malpighiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Dipentodontaceae": { + "p": "Huerteales", + "c": [ + "Dipentodon", + "Perrottetia" + ], + "n": "", + "r": "FAMILY" + }, + "Resedaceae": { + "p": "Brassicales", + "c": [ + "Borthwickia", + "Caylusea", + "Forchhammeria", + "Ochradenus", + "Oligomeris", + "Randonia", + "Reseda", + "Sesamoides", + "Stixis" + ], + "n": "", + "r": "FAMILY" + }, + "Salvadoraceae": { + "p": "Brassicales", + "c": [ + "Azima", + "Salvadora" + ], + "n": "mustard-tree family", + "r": "FAMILY" + }, + "Koeberliniaceae": { + "p": "Brassicales", + "c": [ + "Koeberlinia" + ], + "n": "", + "r": "FAMILY" + }, + "Iresine": { + "p": "Gomphrenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philoxerus": { + "p": "Gomphrenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bretschneideraceae": { + "p": "Brassicales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Fagaceae": { + "p": "Fagales", + "c": [ + "Fagus", + "Castanea", + "Castanopsis", + "Chrysolepis", + "Colombobalanus", + "Cyclobalanopsis", + "Formanodendron", + "Lithocarpus", + "Notholithocarpus", + "Quercus", + "Trigonobalanus" + ], + "n": "beech family", + "r": "FAMILY" + }, + "Cleomaceae": { + "p": "Brassicales", + "c": [ + "Areocleome", + "Arivela", + "Carsonia", + "Polanisia", + "Cleome", + "Coalisina", + "Corynandra", + "Dactylaena", + "Dipterygium", + "Gilgella", + "Gynandropsis", + "Hemiscola", + "Isomeris", + "Kersia", + "New World clade", + "Oxystylis", + "Peritoma", + "Rorida", + "Sieruela", + "Cleomella", + "Stylidocleome", + "Thulinella", + "Wislizenia" + ], + "n": "", + "r": "FAMILY" + }, + "Tovariaceae": { + "p": "Brassicales", + "c": [ + "Tovaria" + ], + "n": "", + "r": "FAMILY" + }, + "Casuarinaceae": { + "p": "Fagales", + "c": [ + "Allocasuarina", + "Casuarina", + "Ceuthostoma", + "Gymnostoma" + ], + "n": "", + "r": "FAMILY" + }, + "Blutaparon": { + "p": "Gomphrenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bataceae": { + "p": "Brassicales", + "c": [ + "Batis" + ], + "n": "", + "r": "FAMILY" + }, + "Limnanthaceae": { + "p": "Brassicales", + "c": [ + "Floerkea", + "Limnanthes" + ], + "n": "meadow-foam family", + "r": "FAMILY" + }, + "Irenella": { + "p": "Gomphrenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Juglandaceae": { + "p": "Fagales", + "c": [ + "Alfaroa", + "Alfaropsis", + "Annamocarya", + "Carya", + "Cyclocarya", + "Engelhardia", + "Oreomunnea", + "Platycarya", + "Pterocarya", + "Rhoiptelea", + "Juglans" + ], + "n": "walnut family", + "r": "FAMILY" + }, + "Pentadiplandraceae": { + "p": "Brassicales", + "c": [ + "Pentadiplandra" + ], + "n": "", + "r": "FAMILY" + }, + "Akaniaceae": { + "p": "Brassicales", + "c": [ + "Akania", + "Bretschneidera" + ], + "n": "", + "r": "FAMILY" + }, + "Francoaceae": { + "p": "Geraniales", + "c": [ + "Balbisia", + "Bersama", + "Francoa", + "Greyia", + "Melianthus", + "Rhynchotheca", + "Tetilla", + "Viviania", + "Wendtia" + ], + "n": "", + "r": "FAMILY" + }, + "Myricaceae": { + "p": "Fagales", + "c": [ + "Canacomyrica", + "Comptonia", + "Morella", + "Myrica" + ], + "n": "bayberry family", + "r": "FAMILY" + }, + "Nothofagaceae": { + "p": "Fagales", + "c": [ + "Fuscospora", + "Lophozonia", + "Nothofagus" + ], + "n": "southern beech family", + "r": "FAMILY" + }, + "Capparaceae": { + "p": "Brassicales", + "c": [ + "Anisocapparis", + "Apophyllum", + "Atamisquea", + "Bachmannia", + "Beautempsia", + "Belencita", + "Boscia", + "Buchholzia", + "Cadaba", + "Calanthea", + "Caphexandra", + "Capparicordis", + "Capparidastrum", + "Capparis", + "Cladostemon", + "Colicodendron", + "Crateva", + "Cynophalla", + "Euadenia", + "Maerua", + "Mesocapparis", + "Monilicarpa", + "Morisonia", + "Neocalyptrocalyx", + "Neocapparis", + "Neothorelia", + "Preslianthus", + "Quadrella", + "Ritchiea", + "Sarcotoxicum", + "Steriphoma", + "Thilachium", + "Tirania" + ], + "n": "", + "r": "FAMILY" + }, + "Emblingiaceae": { + "p": "Brassicales", + "c": [ + "Emblingia" + ], + "n": "", + "r": "FAMILY" + }, + "Setchellanthaceae": { + "p": "Brassicales", + "c": [ + "Setchellanthus" + ], + "n": "", + "r": "FAMILY" + }, + "Tiganophytaceae": { + "p": "Brassicales", + "c": [ + "Tiganophyton" + ], + "n": "", + "r": "FAMILY" + }, + "Tapisciaceae": { + "p": "Huerteales", + "c": [ + "Huertea", + "Tapiscia" + ], + "n": "", + "r": "FAMILY" + }, + "Gomphrena": { + "p": "Gomphrenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gerrardinaceae": { + "p": "Huerteales", + "c": [ + "Gerrardina" + ], + "n": "", + "r": "FAMILY" + }, + "Gyrostemonaceae": { + "p": "Brassicales", + "c": [ + "Codonocarpus", + "Gyrostemon", + "Tersonia" + ], + "n": "", + "r": "FAMILY" + }, + "Caricaceae": { + "p": "Brassicales", + "c": [ + "Carica", + "Cylicomorpha", + "Horovitzia", + "Jacaratia", + "Jarilla", + "Vasconcellea" + ], + "n": "papaya family", + "r": "FAMILY" + }, + "Betulaceae": { + "p": "Fagales", + "c": [ + "Alnus", + "Betula", + "Corylus", + "Carpinus", + "Ostrya", + "Ostryopsis" + ], + "n": "birch family", + "r": "FAMILY" + }, + "Brassicaceae": { + "p": "Brassicales", + "c": [ + "Dichroanthus" + ], + "n": "mustard family", + "r": "FAMILY" + }, + "Tropaeolaceae": { + "p": "Brassicales", + "c": [ + "Magallana", + "Tropaeolum", + "Trophaeastrum" + ], + "n": "nasturtium family", + "r": "FAMILY" + }, + "Rhoipteleaceae": { + "p": "Fagales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Woehleria": { + "p": "Gomphrenoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ticodendraceae": { + "p": "Fagales", + "c": [ + "Ticodendron" + ], + "n": "", + "r": "FAMILY" + }, + "Moringaceae": { + "p": "Brassicales", + "c": [ + "Moringa" + ], + "n": "horseradish tree family", + "r": "FAMILY" + }, + "Petenaeaceae": { + "p": "Huerteales", + "c": [ + "Petenaea" + ], + "n": "", + "r": "FAMILY" + }, + "Geraniaceae": { + "p": "Geraniales", + "c": [ + "Araeoandra", + "California", + "Erodium", + "Geranium", + "Hypseocharis", + "Monsonia", + "Pelargonium", + "Sarcocaulon" + ], + "n": "geranium family", + "r": "FAMILY" + }, + "Cochlospermaceae": { + "p": "Malvales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Halopeplis": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paraerva": { + "p": "Aervoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ouret": { + "p": "Aervoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microcnemum": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oliniaceae": { + "p": "Myrtales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Thymelaeaceae": { + "p": "Malvales", + "c": [ + "Aetoxylon", + "Amyxa", + "Aquilaria", + "Arnhemia", + "Atemnosiphon", + "Craterosiphon", + "Dais", + "Daphne", + "Daphnimorpha", + "Daphnopsis", + "Deltaria", + "Dendrostellera", + "Diarthron", + "Dicranolepis", + "Diplomorpha", + "Drapetes", + "Edgeworthia", + "Enkleia", + "Eriosolena", + "Funifera", + "Gnidia", + "Gonystylus", + "Goodallia", + "Gyrinops", + "Jedda", + "Kelleria", + "Lachnaea", + "Lagetta", + "Lasiadenia", + "Lasiosiphon", + "Dirca", + "Lethedon", + "Linodendron", + "Linostoma", + "Lophostoma", + "Octolepis", + "Ovidia", + "Passerina", + "Peddiea", + "Phaleria", + "Pimelea", + "Rhamnoneuron", + "Schoenobiblus", + "Solmsia", + "Stellera", + "Stephanodaphne", + "Struthiola", + "Synandrodaphne", + "Synaptolepis", + "Tepuianthus", + "Thecanthes", + "Thymelaea", + "Wikstroemia" + ], + "n": "mezereum family", + "r": "FAMILY" + }, + "Memecylaceae": { + "p": "Myrtales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Onagraceae": { + "p": "Myrtales", + "c": [ + "Ludwigioideae", + "Onagroideae" + ], + "n": "evening-primrose family", + "r": "FAMILY" + }, + "Tecticornia": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arthroceras": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bixaceae": { + "p": "Malvales", + "c": [ + "Amoreuxia", + "Bixa", + "Cochlospermum", + "Diegodendron" + ], + "n": "lipstick tree family", + "r": "FAMILY" + }, + "Salicornia": { + "p": "Salicornioideae", + "c": [ + "Salicornia subgen. Afrocornia", + "Salicornia subgen. Amerocornia", + "Salicornia subgen. Arthrocnemoides", + "Salicornia subgen. Salicornia" + ], + "n": "", + "r": "GENUS" + }, + "Halosarcia": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachycornia": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rosaceae": { + "p": "Rosales", + "c": [ + "Amygdaloideae", + "Dryadoideae", + "Rosoideae" + ], + "n": "rose family", + "r": "FAMILY" + }, + "Kalidium": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipterocarpaceae": { + "p": "Malvales", + "c": [ + "Dipterocarpoideae", + "Monotoideae", + "Pakaraimaeoideae" + ], + "n": "meranti family", + "r": "FAMILY" + }, + "Wadithamnus": { + "p": "Aervoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kalidiopsis": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heteropyxidaceae": { + "p": "Myrtales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Cytinaceae": { + "p": "Malvales", + "c": [ + "Bdallophytum", + "Cytinus" + ], + "n": "", + "r": "FAMILY" + }, + "Muntingiaceae": { + "p": "Malvales", + "c": [ + "Dicraspidia", + "Muntingia" + ], + "n": "", + "r": "FAMILY" + }, + "Heterostachys": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elaeagnaceae": { + "p": "Rosales", + "c": [ + "Elaeagnus", + "Hippophae", + "Shepherdia" + ], + "n": "Russian olive family", + "r": "FAMILY" + }, + "Vochysiaceae": { + "p": "Myrtales", + "c": [ + "Callisthene", + "Erisma", + "Erismadelphus", + "Korupodendron", + "Qualea", + "Ruizterania", + "Salvertia", + "Vochysia" + ], + "n": "", + "r": "FAMILY" + }, + "Myrtaceae": { + "p": "Myrtales", + "c": [ + "Myrtoideae", + "Psiloxyloideae" + ], + "n": "myrtle family", + "r": "FAMILY" + }, + "Aerva": { + "p": "Aervoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alzateaceae": { + "p": "Myrtales", + "c": [ + "Alzatea" + ], + "n": "", + "r": "FAMILY" + }, + "Moraceae": { + "p": "Rosales", + "c": [ + "Prainea" + ], + "n": "mulberry family", + "r": "FAMILY" + }, + "Melastomataceae": { + "p": "Myrtales", + "c": [ + "Melastomatoideae", + "Olisbeoideae" + ], + "n": "", + "r": "FAMILY" + }, + "Halostachys": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barbeyaceae": { + "p": "Rosales", + "c": [ + "Barbeya" + ], + "n": "", + "r": "FAMILY" + }, + "Ulmaceae": { + "p": "Rosales", + "c": [ + "Ampelocera", + "Chaetachme", + "Hemiptelea", + "Holoptelea", + "Phyllostylon", + "Planera", + "Ulmus", + "Zelkova" + ], + "n": "elm family", + "r": "FAMILY" + }, + "Cannabaceae": { + "p": "Rosales", + "c": [ + "Aphananthe", + "Cannabis", + "Celtis", + "Gironniera", + "Humulus", + "Lozanella", + "Parasponia", + "Parasponia x Trema", + "Pteroceltis", + "Trema" + ], + "n": "hemp family", + "r": "FAMILY" + }, + "Sclerostegia": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tegicornia": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crypteroniaceae": { + "p": "Myrtales", + "c": [ + "Axinandra", + "Crypteronia", + "Dactylocladus" + ], + "n": "", + "r": "FAMILY" + }, + "Allenrolfea": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neuradaceae": { + "p": "Malvales", + "c": [ + "Grielum", + "Neurada", + "Neuradopsis" + ], + "n": "", + "r": "FAMILY" + }, + "Omegandra": { + "p": "Aervoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Combretaceae": { + "p": "Myrtales", + "c": [ + "Anogeissus", + "Buchenavia", + "Bucida", + "Calopyxis", + "Calycopteris", + "Combretum", + "Conocarpus", + "Dansiea", + "Getonia", + "Guiera", + "Laguncularia", + "Lumnitzera", + "Macropteranthes", + "Meiostemon", + "Pteleopsis", + "Quisqualis", + "Strephonema", + "Terminalia", + "Thiloa" + ], + "n": "Indian almond family", + "r": "FAMILY" + }, + "Rhamnaceae": { + "p": "Rosales", + "c": [ + "rhamnoid group" + ], + "n": "buckthorn family", + "r": "FAMILY" + }, + "Penaeaceae": { + "p": "Myrtales", + "c": [ + "Brachysiphon", + "Endonema", + "Glischrocolla", + "Olinia", + "Penaea", + "Rhynchocalyx", + "Saltera", + "Sonderothamnus", + "Stylapterus" + ], + "n": "", + "r": "FAMILY" + }, + "Ptilotus": { + "p": "Aervoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mangleticornia": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothosaerva": { + "p": "Aervoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urticaceae": { + "p": "Rosales", + "c": [ + "Achudemia", + "Archiboehmeria", + "Astrothalamus", + "Australina", + "Boehmeria", + "Cecropia", + "Chamabainia", + "Coussapoa", + "Cypholophus", + "Debregeasia", + "Dendrocnide", + "Didymodoxa", + "Discocnide", + "Droguetia", + "Elatostema", + "Forsskaolea", + "Gesnouinia", + "Gibbsia", + "Girardinia", + "Gonostegia", + "Gyrotaenia", + "Haroldiella", + "Hemistylus", + "Hesperocnide", + "Laportea", + "Lecanthus", + "Leucosyke", + "Maoutia", + "Metatrophis", + "Musanga", + "Myrianthus", + "Myriocarpa", + "Nanocnide", + "Neodistemon", + "Neraudia", + "Nothocnide", + "Obetia", + "Oreocnide", + "Parietaria", + "Pellionia", + "Petelotiella", + "Phenax", + "Pilea", + "Pipturus", + "Poikilospermum", + "Pourouma", + "Pouzolzia", + "Procris", + "Rousselia", + "Sarcochlamys", + "Sarcopilea", + "Soleirolia", + "Touchardia", + "Urera", + "Urtica", + "Zhengyia" + ], + "n": "nettle family", + "r": "FAMILY" + }, + "Arthrocaulon": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halocnemum": { + "p": "Salicornioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lythraceae": { + "p": "Myrtales", + "c": [ + "Adenaria", + "Ammannia", + "Capuronia", + "Cuphea", + "Decodon", + "Didiplis", + "Diplusodon", + "Duabanga", + "Galpinia", + "Ginoria", + "Gyrosphragma", + "Heimia", + "Hionanthera", + "Koehneria", + "Lafoensia", + "Lagerstroemia", + "Lawsonia", + "Lourtella", + "Lythrum", + "Nesaea", + "Pehria", + "Pemphis", + "Peplis", + "Physocalymma", + "Pleurophora", + "Punica", + "Rotala", + "Sonneratia", + "Tetrataxis", + "Trapa", + "Woodfordia" + ], + "n": "loosestrife family", + "r": "FAMILY" + }, + "Malvaceae": { + "p": "Malvales", + "c": [ + "Bombacoideae", + "Brownlowioideae", + "Byttnerioideae", + "Dombeyoideae", + "Grewioideae", + "Helicteroideae", + "Malvoideae", + "Sterculioideae", + "Tilioideae" + ], + "n": "mallow family", + "r": "FAMILY" + }, + "Dirachmaceae": { + "p": "Rosales", + "c": [ + "Dirachma" + ], + "n": "", + "r": "FAMILY" + }, + "Elaeocarpaceae": { + "p": "Oxalidales", + "c": [ + "Aceratium", + "Aristotelia", + "Crinodendron", + "Dubouzetia", + "Elaeocarpus", + "Peripentadenia", + "Platytheca", + "Sericolea", + "Sloanea", + "Tetratheca", + "Tremandra", + "Vallea" + ], + "n": "", + "r": "FAMILY" + }, + "Connaraceae": { + "p": "Oxalidales", + "c": [ + "Agelaea", + "Byrsocarpus", + "Cnestidium", + "Cnestis", + "Connarus", + "Ellipanthus", + "Hemandradenia", + "Jollydora", + "Manotes", + "Pseudoconnarus", + "Rourea", + "Vismianthus" + ], + "n": "", + "r": "FAMILY" + }, + "Oxalidaceae": { + "p": "Oxalidales", + "c": [ + "Averrhoa", + "Biophytum", + "Dapania", + "Oxalis", + "Sarcotheca" + ], + "n": "wood-sorrel family", + "r": "FAMILY" + }, + "Huaceae": { + "p": "Oxalidales", + "c": [ + "Afrostyrax", + "Hua" + ], + "n": "", + "r": "FAMILY" + }, + "Sarcolaenaceae": { + "p": "Malvales", + "c": [ + "Eremolaena", + "Leptolaena", + "Mediusella", + "Pentachlaena", + "Perrierodendron", + "Rhodolaena", + "Sarcolaena", + "Schizolaena", + "Xerochlamys", + "Xyloolaena" + ], + "n": "", + "r": "FAMILY" + }, + "Hablitzia": { + "p": "Betoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalotaceae": { + "p": "Oxalidales", + "c": [ + "Cephalotus" + ], + "n": "", + "r": "FAMILY" + }, + "Cistaceae": { + "p": "Malvales", + "c": [ + "Cistus", + "Crocanthemum", + "Fumana", + "Halimium", + "Helianthemum", + "Hudsonia", + "Lechea", + "Pakaraimaea", + "Tuberaria" + ], + "n": "rock-rose family", + "r": "FAMILY" + }, + "Oreobliton": { + "p": "Betoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picramniaceae": { + "p": "Picramniales", + "c": [ + "Aenigmanu", + "Alvaradoa", + "Nothotalisia", + "Picramnia" + ], + "n": "", + "r": "FAMILY" + }, + "Patellifolia": { + "p": "Betoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beta": { + "p": "Betoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphanisma": { + "p": "Betoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cunoniaceae": { + "p": "Oxalidales", + "c": [ + "Ackama", + "Acrophyllum", + "Acsmithia", + "Aistopetalum", + "Anodopetalum", + "Bauera", + "Caldcluvia", + "Callicoma", + "Ceratopetalum", + "Codia", + "Cunonia", + "Davidsonia", + "Eucryphia", + "Geissois", + "Gillbeea", + "Hooglandia", + "Karrabina", + "Lamanonia", + "Opocunonia", + "Pancheria", + "Platylophus", + "Pseudoweinmannia", + "Pullea", + "Schizomeria", + "Spiraeanthemum", + "Spiraeopsis", + "Vesselowskya", + "Weinmannia" + ], + "n": "", + "r": "FAMILY" + }, + "Sphaerosepalaceae": { + "p": "Malvales", + "c": [ + "Dialyceras", + "Rhopalocarpus" + ], + "n": "", + "r": "FAMILY" + }, + "Brunelliaceae": { + "p": "Oxalidales", + "c": [ + "Brunellia" + ], + "n": "", + "r": "FAMILY" + }, + "Morinaceae": { + "p": "Dipsacales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Valerianaceae": { + "p": "Dipsacales", + "c": [], + "n": "valerian family", + "r": "FAMILY" + }, + "Dipsacaceae": { + "p": "Dipsacales", + "c": [], + "n": "teasle family", + "r": "FAMILY" + }, + "Sarcospermatoideae": { + "p": "Sapotaceae", + "c": [ + "Sarcosperma" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Chrysophylloideae": { + "p": "Sapotaceae", + "c": [ + "Achrouteria", + "Amorphospermum", + "Aningeria", + "Aubregrinia", + "Beccariella", + "Breviea", + "Chromolucuma", + "Chrysophyllum", + "Corbassona", + "Cornuella", + "Delpydora", + "Diploon", + "Ecclinusa", + "Elaeoluma", + "Englerophytum", + "Gambeya", + "Krausella", + "Leptostylis", + "Lucuma", + "Magodendron", + "Malacantha", + "Martiusella", + "Micropholis", + "Niemeyera", + "Ochrothallus", + "Omphalocarpum", + "Pichonia", + "Planchonella", + "Pleioluma", + "Pouteria", + "Pradosia", + "Prieurella", + "Pycnandra", + "Ragala", + "Sarcaulus", + "Sebertia", + "Sersalisia", + "Synsepalum", + "Trouettia", + "Tsebona", + "Van-royena", + "Xantolis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Linnaeaceae": { + "p": "Dipsacales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Sapotoideae": { + "p": "Sapotaceae", + "c": [ + "Argania", + "Aulandra", + "Autranella", + "Baillonella", + "Bemangidia", + "Burckella", + "Capurodendron", + "Diploknema", + "Donella", + "Eberhardtia", + "Faucherea", + "Inhambanella", + "Isonandra", + "Labourdonnaisia", + "Labramia", + "Lecomtedoxa", + "Letestua", + "Madhuca", + "Manilkara", + "Mimusops", + "Neohemsleya", + "Neolemonniera", + "Nesoluma", + "Northia", + "Palaquium", + "Payena", + "Sideroxylon", + "Sinosideroxylon", + "Spiniluma", + "Tieghemella", + "Vitellaria", + "Vitellariopsis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Caprifoliaceae": { + "p": "Dipsacales", + "c": [ + "Abelia", + "Acanthocalyx", + "Bassecoia", + "Centranthus", + "Cephalaria", + "Cryptothladia", + "Diabelia", + "Diervilla", + "Dipelta", + "Fedia", + "Heptacodium", + "Lonicera", + "Knautia", + "Kolkwitzia", + "Leycesteria", + "Linnaea", + "Lomelosia", + "Morina", + "Nardostachys", + "Patrinia", + "Plectritis", + "Pseudoscabiosa", + "Pterocephalidium", + "Pterocephalodes", + "Pterocephalus", + "Pycnocomon", + "Scabiosa", + "Sixalix", + "Succisa", + "Succisella", + "Symphoricarpos", + "Dipsacus", + "Triosteum", + "Triplostegia", + "Valeriana", + "Valerianella", + "Vesalea", + "Weigela", + "Zabelia" + ], + "n": "honeysuckle famly", + "r": "FAMILY" + }, + "Adoxaceae": { + "p": "Dipsacales", + "c": [ + "Adoxa", + "Sambucus", + "Sinadoxa", + "Tetradoxa", + "Viburnum" + ], + "n": "", + "r": "FAMILY" + }, + "Diervillaceae": { + "p": "Dipsacales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Iteiluma": { + "p": "Sapotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruyschia": { + "p": "Marcgraviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcopera": { + "p": "Marcgraviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marcgraviastrum": { + "p": "Marcgraviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Souroubea": { + "p": "Marcgraviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Norantea": { + "p": "Marcgraviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marcgravia": { + "p": "Marcgraviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schwartzia": { + "p": "Marcgraviaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyceraceae": { + "p": "Asterales", + "c": [ + "Acicarpha", + "Boopis", + "Calycera", + "Gamocarpha", + "Moschopsis", + "Nastanthus" + ], + "n": "", + "r": "FAMILY" + }, + "Griseliniaceae": { + "p": "Apiales", + "c": [ + "Griselinia" + ], + "n": "", + "r": "FAMILY" + }, + "Torricelliaceae": { + "p": "Apiales", + "c": [ + "Aralidium", + "Melanophylla", + "Torricellia" + ], + "n": "", + "r": "FAMILY" + }, + "Freziera": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euryodendron": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anneslea": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lissocarpa": { + "p": "Ebenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asteraceae": { + "p": "Asterales", + "c": [ + "Asteroideae", + "Barnadesioideae", + "Carduoideae", + "Cichorioideae", + "Corymbioideae", + "Dicomoideae", + "Famatinanthoideae", + "Gochnatioideae", + "Gymnarrhenoideae", + "Hecastocleidoideae", + "Mutisioideae", + "Pertyoideae", + "Stifftioideae", + "Tarchonanthoideae", + "Vernonioideae", + "Wunderlichioideae" + ], + "n": "daisy family", + "r": "FAMILY" + }, + "Stylidiaceae": { + "p": "Asterales", + "c": [ + "Donatia", + "Forstera", + "Levenhookia", + "Oreostylidium", + "Phyllachne", + "Stylidium" + ], + "n": "", + "r": "FAMILY" + }, + "Royena": { + "p": "Ebenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diospyros": { + "p": "Ebenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goodeniaceae": { + "p": "Asterales", + "c": [ + "Brunonia", + "core Goodeniaceae", + "Diaspasis", + "Pentaptilon", + "Selliera", + "Velleia" + ], + "n": "", + "r": "FAMILY" + }, + "Galax": { + "p": "Diapensiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apocynaceae": { + "p": "Gentianales", + "c": [ + "Apocynoideae", + "Asclepiadoideae", + "Periplocoideae", + "Rauvolfioideae", + "Secamonoideae" + ], + "n": "dogbane family", + "r": "FAMILY" + }, + "Eurya": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symplocos": { + "p": "Symplocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Berneuxia": { + "p": "Diapensiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apiineae": { + "p": "Apiales", + "c": [ + "Apiaceae", + "Araliaceae", + "Myodocarpaceae", + "Pittosporaceae" + ], + "n": "", + "r": "SUBORDER" + }, + "Argophyllaceae": { + "p": "Asterales", + "c": [ + "Argophyllum", + "Corokia" + ], + "n": "", + "r": "FAMILY" + }, + "Cordyloblaste": { + "p": "Symplocaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cleyera": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diapensia": { + "p": "Diapensiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gentianaceae": { + "p": "Gentianales", + "c": [], + "n": "gentian family", + "r": "FAMILY" + }, + "Rubiaceae": { + "p": "Gentianales", + "c": [ + "Cinchonoideae", + "Ixoroideae", + "Rubioideae" + ], + "n": "madder family", + "r": "FAMILY" + }, + "Pentaphylax": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maba": { + "p": "Ebenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizocodon": { + "p": "Diapensiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Visnea": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Menyanthaceae": { + "p": "Asterales", + "c": [ + "Liparophyllum", + "Menyanthes", + "Nephrophyllidium", + "Nymphoides", + "Ornduffia", + "Villarsia" + ], + "n": "buckbean family", + "r": "FAMILY" + }, + "Pennantiaceae": { + "p": "Apiales", + "c": [ + "Pennantia" + ], + "n": "", + "r": "FAMILY" + }, + "Alseuosmiaceae": { + "p": "Asterales", + "c": [ + "Alseuosmia", + "Crispiloba", + "Memecylanthus", + "Pachydiscus", + "Periomphale", + "Platyspermation", + "Wittsteinia" + ], + "n": "", + "r": "FAMILY" + }, + "Campanulaceae": { + "p": "Asterales", + "c": [ + "Adenophora", + "Apetahia", + "Asyneuma", + "Azorina", + "Berenice", + "Brighamia", + "Burmeistera", + "Campanula", + "Campanumoea", + "Canarina", + "Centropogon", + "Clermontia", + "Codonopsis", + "Colensoa", + "Craterocapsa", + "Cyananthus", + "Cyanea", + "Cyclocodon", + "Cylindrocarpa", + "Cyphia", + "Cyphocarpus", + "Delissea", + "Dialypetalum", + "Diastatea", + "Downingia", + "Echinocodon", + "Edraianthus", + "Feeria", + "Githopsis", + "Grammatotheca", + "Hanabusaya", + "Heterochaenia", + "Heterocodon", + "Heterotoma", + "Himalacodon", + "Hippobroma", + "Homocodon", + "Howellia", + "Hypsela", + "Isotoma", + "Jasione", + "Legenere", + "Legousia", + "Leptocodon", + "Lithotoma", + "Lobelia", + "Lysipomia", + "Merciera", + "Michauxia", + "Microcodon", + "Monopsis", + "Musschia", + "Nemacladus", + "Nesocodon", + "Ostrowskia", + "Palmerella", + "Pankycodon", + "Peracarpa", + "Petkovia", + "Petromarula", + "Physoplexis", + "Phyteuma", + "Platycodon", + "Porterella", + "Pratia", + "Prismatocarpus", + "Pseudocodon", + "Pseudonemacladus", + "Rhigiophyllum", + "Roella", + "Sclerotheca", + "Sergia", + "Siphocampylus", + "Siphocodon", + "Solenopsis", + "Symphyandra", + "Theilera", + "Theodorovia", + "Trachelium", + "Treichelia", + "Trematolobelia", + "Triodanis", + "Wahlenbergia", + "Wimmerella", + "Zeugandra" + ], + "n": "bellflower family", + "r": "FAMILY" + }, + "Euclea": { + "p": "Ebenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ternstroemia": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Shortia": { + "p": "Diapensiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mitrastemon": { + "p": "Mitrastemonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loganiaceae": { + "p": "Gentianales", + "c": [ + "Adelphacme", + "Androya", + "Antonia", + "Bonyunia", + "Gardneria", + "Geniostoma", + "Labordia", + "Logania", + "Mitrasacme", + "Mitreola", + "Mostuea", + "Neuburgia", + "Norrisia", + "Orianthera", + "Phyllangium", + "Schizacme", + "Spigelia", + "Strychnos", + "Usteria" + ], + "n": "", + "r": "FAMILY" + }, + "Symplococarpon": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentaphragmataceae": { + "p": "Asterales", + "c": [ + "Pentaphragma" + ], + "n": "", + "r": "FAMILY" + }, + "Pyxidanthera": { + "p": "Diapensiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gelsemiaceae": { + "p": "Gentianales", + "c": [ + "Gelsemium" + ], + "n": "", + "r": "FAMILY" + }, + "Adinandra": { + "p": "Pentaphylacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phellinaceae": { + "p": "Asterales", + "c": [ + "Phelline" + ], + "n": "", + "r": "FAMILY" + }, + "Rousseaceae": { + "p": "Asterales", + "c": [ + "Abrophyllum", + "Carpodetus", + "Cuttsia", + "Roussea" + ], + "n": "", + "r": "FAMILY" + }, + "Huodendron": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnosteris": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dodecahema": { + "p": "Eriogonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Langloisia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halesia": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Navarretia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aliciella": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bruinsmia": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loeseliastrum": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microsteris": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bonplandia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryantiella": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phlox": { + "p": "Polemoniaceae", + "c": [], + "n": "phloxes", + "r": "GENUS" + }, + "Alniphyllum": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rehderodendron": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptosiphon": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriastrum": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fouquieria": { + "p": "Fouquieriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Changiostyrax": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Escalloniaceae": { + "p": "Escalloniales", + "c": [ + "Anopterus", + "Eremosyne", + "Escallonia", + "Forgesia", + "Polyosma", + "Rayenia", + "Tribeles", + "Valdivia" + ], + "n": "", + "r": "FAMILY" + }, + "Loeselia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parastyrax": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cobaea": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dayia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthoscyphus": { + "p": "Eriogonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afrobrunnichia": { + "p": "Eriogonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxytheca": { + "p": "Eriogonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microgilia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Johanneshowellia": { + "p": "Eriogonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allophyllum": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Giliastrum": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saltugilia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perkinsiodendron": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Styrax": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyosmaceae": { + "p": "Escalloniales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Gilia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melliodendron": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthogilia": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Systenotheca": { + "p": "Eriogonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aristocapsa": { + "p": "Eriogonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ipomopsis": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cantua": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polemonium": { + "p": "Polemoniaceae", + "c": [], + "n": "Jacob's ladders", + "r": "GENUS" + }, + "Collomia": { + "p": "Polemoniaceae", + "c": [], + "n": "mountain-trumpets", + "r": "GENUS" + }, + "Centrostegia": { + "p": "Eriogonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinojackia": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symmeria": { + "p": "Symmerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Linanthus": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterostyrax": { + "p": "Styracaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lathrocasis": { + "p": "Polemoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bruniaceae": { + "p": "Bruniales", + "c": [ + "Nebelia", + "Tittmannia" + ], + "n": "", + "r": "FAMILY" + }, + "Saurauia": { + "p": "Actinidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyspora": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Franklinia": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tutcheria": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apterosperma": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laplacea": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parapyrenaria": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clematoclethra": { + "p": "Actinidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pelliciera": { + "p": "Tetrameristaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinidia": { + "p": "Actinidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gordonia": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Columelliaceae": { + "p": "Bruniales", + "c": [ + "Columellia", + "Desfontainia" + ], + "n": "", + "r": "FAMILY" + }, + "Pentamerista": { + "p": "Tetrameristaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glyptocarpa": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hartia": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stewartia": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schima": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinopyrenaria": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetramerista": { + "p": "Tetrameristaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camellia": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrenaria": { + "p": "Theaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Napoleonaea": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cariniana": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lecythis": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crateranthus": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planchonia": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barringtonia": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhaptopetalum": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oubanguia": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrocera": { + "p": "Balsaminaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Couroupita": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Careya": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chydenanthus": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grias": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Foetidia": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gustavia": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eschweilera": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scytopetalum": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Couratari": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asteranthos": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clethra": { + "p": "Clethraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petersianthus": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allantoma": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Purdiaea": { + "p": "Clethraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brazzeia": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bertholletia": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corythophora": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Impatiens": { + "p": "Balsaminaceae", + "c": [ + "Impatiens subgen. Clavicarpa", + "Impatiens subgen. Impatiens" + ], + "n": "", + "r": "GENUS" + }, + "Pierrina": { + "p": "Lecythidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cassiopoideae": { + "p": "Ericaceae", + "c": [ + "Cassiope" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Arbutoideae": { + "p": "Ericaceae", + "c": [ + "Arbutus", + "Arctostaphylos", + "Arctous", + "Comarostaphylis", + "Ornithostaphylos", + "Xylococcus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Heliotropiaceae": { + "p": "Boraginales", + "c": [ + "Argusia", + "Ceballosia", + "Euploca", + "Heliotropium", + "Hilgeria", + "Ixorhea", + "Myriopus", + "Nogalia", + "Schleidenia", + "Tournefortia" + ], + "n": "", + "r": "FAMILY" + }, + "Sphenostemonaceae": { + "p": "Paracryphiales", + "c": [], + "n": "", + "r": "FAMILY" + }, + "Paracryphiaceae": { + "p": "Paracryphiales", + "c": [ + "Paracryphia", + "Quintinia", + "Sphenostemon" + ], + "n": "", + "r": "FAMILY" + }, + "Hoplestigmataceae": { + "p": "Boraginales", + "c": [ + "Hoplestigma" + ], + "n": "", + "r": "FAMILY" + }, + "Roridula": { + "p": "Roridulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lennoaceae": { + "p": "Boraginales", + "c": [ + "Lennoa", + "Pholisma" + ], + "n": "", + "r": "FAMILY" + }, + "Coldeniaceae": { + "p": "Boraginales", + "c": [ + "Coldenia" + ], + "n": "", + "r": "FAMILY" + }, + "Codonaceae": { + "p": "Boraginales", + "c": [ + "Codon" + ], + "n": "", + "r": "FAMILY" + }, + "Helwingiaceae": { + "p": "Aquifoliales", + "c": [ + "Helwingia" + ], + "n": "", + "r": "FAMILY" + }, + "Hydrophyllaceae": { + "p": "Boraginales", + "c": [ + "Draperia", + "Ellisia", + "Emmenanthe", + "Eucrypta", + "Hesperochiron", + "Howellanthus", + "Hydrophyllum", + "Nemophila", + "Phacelia", + "Pholistoma", + "Romanzoffia", + "Tricardia" + ], + "n": "waterleaf family", + "r": "FAMILY" + }, + "Cardiopteridaceae": { + "p": "Cardiopteridales", + "c": [ + "Cardiopteris", + "Citronella", + "Gonocaryum", + "Leptaulus", + "Pseudobotrys" + ], + "n": "", + "r": "FAMILY" + }, + "Cordiaceae": { + "p": "Boraginales", + "c": [ + "Cordia", + "Varronia" + ], + "n": "", + "r": "FAMILY" + }, + "Pyroloideae": { + "p": "Ericaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Boraginaceae": { + "p": "Boraginales", + "c": [ + "Boraginoideae", + "Cynoglossoideae", + "Echiochiloideae" + ], + "n": "borage family", + "r": "FAMILY" + }, + "Epacridoideae": { + "p": "Ericaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Namaceae": { + "p": "Boraginales", + "c": [ + "Eriodictyon", + "Nama", + "Turricula", + "Wigandia" + ], + "n": "", + "r": "FAMILY" + }, + "Wellstediaceae": { + "p": "Boraginales", + "c": [ + "Wellstedia" + ], + "n": "", + "r": "FAMILY" + }, + "Enkianthoideae": { + "p": "Ericaceae", + "c": [ + "Enkianthus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Vaccinioideae": { + "p": "Ericaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Ericoideae": { + "p": "Ericaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Stemonuraceae": { + "p": "Cardiopteridales", + "c": [ + "Codiocarpus", + "Discophora", + "Gastrolepis", + "Gomphandra", + "Grisollea", + "Hartleya", + "Irvingbaileya", + "Lasianthera", + "Medusanthera", + "Stemonurus", + "Whitmorea" + ], + "n": "", + "r": "FAMILY" + }, + "Ehretiaceae": { + "p": "Boraginales", + "c": [ + "Bourreria", + "Ehretia", + "Halgania", + "Hilsenbergia", + "Lepidocordia", + "Pteleocarpa", + "Rochefortia", + "Tiquilia" + ], + "n": "", + "r": "FAMILY" + }, + "Aquifoliaceae": { + "p": "Aquifoliales", + "c": [ + "Ilex", + "Nemopanthus" + ], + "n": "holly family", + "r": "FAMILY" + }, + "Harrimanelloideae": { + "p": "Ericaceae", + "c": [ + "Harrimanella" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Phyllonomaceae": { + "p": "Aquifoliales", + "c": [ + "Phyllonoma" + ], + "n": "", + "r": "FAMILY" + }, + "Cliftonia": { + "p": "Cyrillaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucommiaceae": { + "p": "Garryales", + "c": [ + "Eucommia" + ], + "n": "", + "r": "FAMILY" + }, + "Sarracenia": { + "p": "Sarraceniaceae", + "c": [], + "n": "pitcherplants", + "r": "GENUS" + }, + "Heliamphora": { + "p": "Sarraceniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Darlingtonia": { + "p": "Sarraceniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sladenia": { + "p": "Sladeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyrilla": { + "p": "Cyrillaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ficalhoa": { + "p": "Sladeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Garryaceae": { + "p": "Garryales", + "c": [ + "Aucuba", + "Garrya" + ], + "n": "", + "r": "FAMILY" + }, + "Tapeinosperma": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Primula": { + "p": "Primulaceae", + "c": [], + "n": "primroses", + "r": "GENUS" + }, + "Cyclamen": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glaux": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ctenardisia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Emblemantha": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aegiceras": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rapanea": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sadiria": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jacquinia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hottonia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenandra": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maesa": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Soldanella": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Systellantha": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bonellia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amblyanthus": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pomatosace": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Embelia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vahliaceae": { + "p": "Vahliales", + "c": [ + "Vahlia" + ], + "n": "", + "r": "FAMILY" + }, + "Loheria": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wallenia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Centunculus": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kaufmannia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clavija": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androsace": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trientalis": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stylogyne": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vitaliana": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coris": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fittingia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Theophrasta": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bryocarpum": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Englerodaphne": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleiomeris": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deherainia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parathesis": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Votschia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elingamita": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neomezia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Omphalogramma": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oncostemum": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monoporus": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cybianthus": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dionysia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lysimachia": { + "p": "Primulaceae", + "c": [], + "n": "loosestrife", + "r": "GENUS" + }, + "Discocalyx": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Labisia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anagallis": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sredinskya": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ardisiandra": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dodecatheon": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cortusa": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stimpsonia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conandrium": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marantodes": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geissanthus": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Badula": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amblyanthopsis": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pelletiera": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrsine": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heberdenia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Samolus": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grammadenia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Douglasia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antistrophe": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ardisia": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asterolinon": { + "p": "Primulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thomandersiaceae": { + "p": "Lamiales", + "c": [ + "Thomandersia" + ], + "n": "", + "r": "FAMILY" + }, + "Alangium": { + "p": "Cornaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrachondraceae": { + "p": "Lamiales", + "c": [ + "Polypremum", + "Tetrachondra" + ], + "n": "", + "r": "FAMILY" + }, + "Metteniusaceae": { + "p": "Metteniusales", + "c": [ + "Apodytes", + "Calatola", + "Dendrobangia", + "Emmotum", + "Metteniusa", + "Oecopetalum", + "Ottoschulzia", + "Pittosporopsis", + "Platea", + "Poraqueiba", + "Rhaphiostylis" + ], + "n": "", + "r": "FAMILY" + }, + "Paulowniaceae": { + "p": "Lamiales", + "c": [ + "Paulownia" + ], + "n": "", + "r": "FAMILY" + }, + "Kirengeshoma": { + "p": "Hydrangeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oleaceae": { + "p": "Lamiales", + "c": [], + "n": "olive famly", + "r": "FAMILY" + }, + "Plocospermataceae": { + "p": "Lamiales", + "c": [ + "Plocosperma" + ], + "n": "", + "r": "FAMILY" + }, + "Gesneriaceae": { + "p": "Lamiales", + "c": [ + "Didymocarpoideae", + "Gesnerioideae", + "Sanangoideae" + ], + "n": "African violet family", + "r": "FAMILY" + }, + "Pedaliaceae": { + "p": "Lamiales", + "c": [ + "Ceratotheca", + "Dicerocaryum", + "Harpagophytum", + "Holubia", + "Josephinia", + "Pedaliodiscus", + "Pedalium", + "Pterodiscus", + "Rogeria", + "Sesamothamnus", + "Sesamum", + "Trapella", + "Uncarina" + ], + "n": "sesame family", + "r": "FAMILY" + }, + "Chamaepericlymenum": { + "p": "Cornaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oncothecaceae": { + "p": "Oncothecales", + "c": [ + "Oncotheca" + ], + "n": "", + "r": "FAMILY" + }, + "Fendlerella": { + "p": "Hydrangeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stilbaceae": { + "p": "Lamiales", + "c": [ + "Anastrabe", + "Bowkeria", + "Campylostachys", + "Charadrophila", + "Euthystachys", + "Halleria", + "Ixianthes", + "Kogelbergia", + "Nuxia", + "Retzia", + "Stilbe" + ], + "n": "", + "r": "FAMILY" + }, + "Mazaceae": { + "p": "Lamiales", + "c": [ + "Mazus", + "Puchiumazus" + ], + "n": "", + "r": "FAMILY" + }, + "Whipplea": { + "p": "Hydrangeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lamiaceae": { + "p": "Lamiales", + "c": [ + "Ajugoideae", + "Callicarpoideae", + "Cymarioideae", + "Lamioideae", + "Nepetoideae", + "Peronematoideae", + "Premnoideae", + "Prostantheroideae", + "Scutellarioideae", + "Symphorematoideae", + "Tectonoideae", + "Teucrioideae", + "Viticoideae" + ], + "n": "mint family", + "r": "FAMILY" + }, + "Martyniaceae": { + "p": "Lamiales", + "c": [ + "Craniolaria", + "Holoregmia", + "Ibicella", + "Martynia", + "Proboscidea" + ], + "n": "", + "r": "FAMILY" + }, + "Carpenteria": { + "p": "Hydrangeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plantaginaceae": { + "p": "Lamiales", + "c": [], + "n": "speedwell family", + "r": "FAMILY" + }, + "Orobanchaceae": { + "p": "Lamiales", + "c": [ + "Leptorhabdos", + "Omphalotrix" + ], + "n": "", + "r": "FAMILY" + }, + "Swida": { + "p": "Cornaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Icacinaceae": { + "p": "Icacinales", + "c": [ + "Alsodeiopsis", + "Casimirella", + "Cassinopsis", + "Chlamydocarya", + "Desmostachys", + "Hosiea", + "Icacina", + "Iodes", + "Lavigeria", + "Leretia", + "Mappia", + "Mappianthus", + "Merrilliodendron", + "Miquelia", + "Natsiatopsis", + "Natsiatum", + "Nothapodytes", + "Phytocrene", + "Pleurisanthes", + "Polyporandra", + "Pyrenacantha", + "Ryticaryum", + "Sarcostigma", + "Sleumeria", + "Stachyanthus" + ], + "n": "", + "r": "FAMILY" + }, + "Fendlera": { + "p": "Hydrangeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthaceae": { + "p": "Lamiales", + "c": [ + "Acanthoideae", + "Avicennioideae", + "Nelsonioideae", + "Thunbergioideae" + ], + "n": "", + "r": "FAMILY" + }, + "Bignoniaceae": { + "p": "Lamiales", + "c": [ + "Crescentiina", + "Piriadacus", + "Potamoganos", + "Sampaiella" + ], + "n": "trumpet creeper family", + "r": "FAMILY" + }, + "Carlemanniaceae": { + "p": "Lamiales", + "c": [ + "Carlemannia", + "Silvianthus" + ], + "n": "", + "r": "FAMILY" + }, + "Jamesia": { + "p": "Hydrangeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Linderniaceae": { + "p": "Lamiales", + "c": [ + "Ameroglossum", + "Artanema", + "Bampsia", + "Bonnaya", + "Catimbaua", + "Chamaegigas", + "Craterostigma", + "Crepidorhopalon", + "Cubitanthus", + "Isabelcristinia", + "Legazpia", + "Lindernia", + "Linderniella", + "Picria", + "Pierranthus", + "Psammetes", + "Rhamphicarpa", + "Scolophyllum", + "Stemodiopsis", + "Torenia", + "Vandellia", + "Yamazakia" + ], + "n": "", + "r": "FAMILY" + }, + "Phrymaceae": { + "p": "Lamiales", + "c": [ + "Diplacus", + "Dodartia", + "Elacholoma", + "Erythranthe", + "Glossostigma", + "Hemichaena", + "Lancea", + "Leucocarpus", + "Mimetanthe", + "Mimulus", + "Peplidium", + "Phryma", + "Thyridia", + "Uvedalia" + ], + "n": "", + "r": "FAMILY" + }, + "Cornus": { + "p": "Cornaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deutzia": { + "p": "Hydrangeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schlegeliaceae": { + "p": "Lamiales", + "c": [ + "Exarata", + "Schlegelia", + "Synapsis" + ], + "n": "", + "r": "FAMILY" + }, + "Scrophulariaceae": { + "p": "Lamiales", + "c": [], + "n": "figwort family", + "r": "FAMILY" + }, + "Calceolariaceae": { + "p": "Lamiales", + "c": [ + "Calceolaria", + "Jovellana", + "Porodittia" + ], + "n": "", + "r": "FAMILY" + }, + "Byblidaceae": { + "p": "Lamiales", + "c": [ + "Byblis" + ], + "n": "", + "r": "FAMILY" + }, + "Lentibulariaceae": { + "p": "Lamiales", + "c": [ + "Utricularia", + "Pinguicula", + "Genlisea" + ], + "n": "", + "r": "FAMILY" + }, + "Philadelphus": { + "p": "Hydrangeaceae", + "c": [], + "n": "mock-oranges", + "r": "GENUS" + }, + "Nasa": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucnide": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Klaprothia": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wightiaceae": { + "p": "Lamiales", + "c": [ + "Wightia" + ], + "n": "", + "r": "FAMILY" + }, + "Blumenbachia": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mentzelia": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kissenia": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plakothira": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schismocarpus": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Huidobria": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gronovia": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chichicaste": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Verbenaceae": { + "p": "Lamiales", + "c": [ + "Verbenoxylum" + ], + "n": "verbena family", + "r": "FAMILY" + }, + "Presliophytum": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loasa": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cevallia": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fuertesia": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aosa": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petalonyx": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caiophora": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scyphanthus": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xylopodia": { + "p": "Loasaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrostachys": { + "p": "Hydrostachyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nyssa": { + "p": "Nyssaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Montiniaceae": { + "p": "Solanales", + "c": [ + "Grevea", + "Kaliphora", + "Montinia" + ], + "n": "", + "r": "FAMILY" + }, + "Sphenocleaceae": { + "p": "Solanales", + "c": [ + "Sphenoclea" + ], + "n": "", + "r": "FAMILY" + }, + "Grubbia": { + "p": "Grubbiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Davidia": { + "p": "Nyssaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camptotheca": { + "p": "Nyssaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solanaceae": { + "p": "Solanales", + "c": [ + "Cestroideae", + "Duckeodendroideae", + "Goetzeoideae", + "Nicotianoideae", + "Petunioideae", + "Schizanthoideae", + "Schwenckioideae", + "Solanoideae" + ], + "n": "nightshade family", + "r": "FAMILY" + }, + "Diplopanax": { + "p": "Nyssaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Convolvulaceae": { + "p": "Solanales", + "c": [], + "n": "morning-glory family", + "r": "FAMILY" + }, + "Curtisia": { + "p": "Curtisiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydroleaceae": { + "p": "Solanales", + "c": [ + "Hydrolea" + ], + "n": "", + "r": "FAMILY" + }, + "Mastixia": { + "p": "Nyssaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corynopuntia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maihuenia": { + "p": "Maihuenioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterocactus": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salmonopuntia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrocylindropuntia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cumulopuntia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micropuntia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Punotia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pereskiopsis": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Airampoa": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quiabentia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nopalea": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maihueniopsis": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brasiliopuntia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cylindropuntia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pereskia": { + "p": "Pereskioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Opuntia": { + "p": "Opuntioideae", + "c": [], + "n": "prickly-pears", + "r": "GENUS" + }, + "Tacinga": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodocactus": { + "p": "Pereskioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Consolea": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Miqueliopuntia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tephrocactus": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grusonia": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tunilla": { + "p": "Opuntioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leuenbergeria": { + "p": "Leuenbergerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cardenasiodendron": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allospondias": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lithraea": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothopegia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Attilaea": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Staphylea": { + "p": "Staphyleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metopium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melanorrhoea": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buchanania": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplorhus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euscaphis": { + "p": "Staphyleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Operculicarya": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polygonanthus": { + "p": "Anisophylleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baronia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campnosperma": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gluta": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthopterygium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loxostylis": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abrahamia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astronium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euroschinus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micronychia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pistacia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Faguetia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Comocladia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guamatela": { + "p": "Guamatelaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinocheita": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heeria": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drimycarpus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anacardium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androtium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melanochyla": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apterokarpos": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blepharocarya": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bonetiella": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laurophyllus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loxopterygium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antrocaryon": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Holigarna": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fegimanra": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lannea": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bouea": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ozoroa": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochoterenaea": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Choerospondias": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Combretocarpus": { + "p": "Anisophylleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malosma": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentaspadon": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachycormus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisophyllea": { + "p": "Anisophylleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mauria": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylopetalum": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mosquitoxylum": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pegia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parishia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mangifera": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dobinea": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyrtocarpa": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Turpinia": { + "p": "Staphyleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harpephyllum": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphipterygium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poga": { + "p": "Anisophylleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Biebersteinia": { + "p": "Biebersteiniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dracontomelon": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cotinus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "'Hermogenodendron'": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reinwardtiodendron": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chukrasia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chisocheton": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Soymida": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Synoum": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Walsura": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterorhachis": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudosmodingium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schmardaea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymocheton": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ekebergia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thyrsodium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichilia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnostemon": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vavaea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neobeguea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerosacme": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ixerba": { + "p": "Strasburgeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apodanthes": { + "p": "Apodanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sorindeia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Castela": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cedrela": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilostyles": { + "p": "Apodanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cabralea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ailanthus": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sclerocarya": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Capuronianthus": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphanamixis": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protorhus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Azadirachta": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carapa": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lovoa": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stachyurus": { + "p": "Stachyuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplophylloideae": { + "p": "Rutaceae", + "c": [ + "Haplophyllum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Lepidotrichilia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cipadessa": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruagea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocedrela": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudobersama": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocarapa": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perriera": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poupartia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schinopsis": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apacheria": { + "p": "Crossosomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strasburgeria": { + "p": "Strasburgeriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Humbertioturraea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Semecarpus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zanthoxyloideae": { + "p": "Rutaceae", + "c": [ + "Acmadenia", + "Acradenia", + "Acronychia", + "Adenandra", + "Adiscanthus", + "Agathosma", + "Andreadoxa", + "Angostura", + "Asterolasia", + "Balfourodendron", + "Boronia", + "Bosistoa", + "Bouchardatia", + "Brombya", + "Calodendrum", + "Casimiroa", + "Choisya", + "Chorilaena", + "Coatesia", + "Coleonema", + "Comptonella", + "Conchocarpus", + "Correa", + "Crossosperma", + "Crowea", + "Cyanothamnus", + "Decagonocarpus", + "Decatropis", + "Decazyx", + "Desmotes", + "Dictamnus", + "Dinosperma", + "Diosma", + "Diplolaena", + "Drummondita", + "Dutaillyea", + "Empleurum", + "Eriostemon", + "Ertela", + "Erythrochiton", + "Esenbeckia", + "Euchaetis", + "Euodia", + "Euxylophora", + "Fagaropsis", + "Flindersia", + "Galipea", + "Geijera", + "Geleznowia", + "Halfordia", + "Helietta", + "Hortia", + "Ivodea", + "Leionema", + "Lubaria", + "Lunasia", + "Maclurodendron", + "Macrostylis", + "Medicosma", + "Megastigma", + "Melicope", + "Metrodorea", + "Microcybe", + "Muiriantha", + "Myrtopsis", + "Nematolepis", + "Neobyrnesia", + "Neoraputia", + "Neoschmidia", + "Orixa", + "Peltostigma", + "Pentaceras", + "Perryodendron", + "Phebalium", + "Phellodendron", + "Philotheca", + "Phyllosma", + "Picrella", + "Pitavia", + "Pitaviaster", + "Plethadenia", + "Ptelea", + "Raputia", + "Raputiarana", + "Rauia", + "Raulinoa", + "Ravenia", + "Raveniopsis", + "Rhadinothamnus", + "Sarcomelicope", + "Sheilanthera", + "Sigmatanthus", + "Skimmia", + "Spiranthera", + "Tetractomia", + "Tetradium", + "Ticorea", + "Toxosiphon", + "Vepris", + "Zanthoxylum", + "Zieria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Quivisianthe": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homalolepis": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rutoideae": { + "p": "Rutaceae", + "c": [ + "Boenninghausenia", + "Chloroxylon", + "Psilopeganum", + "Ruta", + "Thamnosma" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pseudoclausena": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Velascoa": { + "p": "Crossosomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dysoxylum": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xylocarpus": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossosoma": { + "p": "Crossosomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spondias": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amyridoideae": { + "p": "Rutaceae", + "c": [ + "Amyris", + "Cneoridium", + "Pilocarpus", + "Stauranthus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Leplaea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schinus": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sandoricum": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Toona": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Epicharis": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leitneria": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aglaia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goniocheton": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malleastrum": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Turraeanthus": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Turraea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodosphaera": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Naregamia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calodecaryia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lansium": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trichoscypha": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Khaya": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brucea": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Owenia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthocarapa": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poupartiopsis": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amaroria": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothospondias": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cneoroideae": { + "p": "Rutaceae", + "c": [ + "Bottegoa", + "Cedrelopsis", + "Cneorum", + "Dictyoloma", + "Harrisonia", + "Ptaeroxylon", + "Sohnreyia", + "Spathelia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Heckeldora": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heynea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Odyendea": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glossopetalon": { + "p": "Crossosomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Searsia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Toxicodendron": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Entandrophragma": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hannoa": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eurycoma": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudospondias": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guarea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoguarea": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Swintonia": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nymania": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Smodingium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tapirira": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astrotrichilia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geissoloma": { + "p": "Geissolomataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prasoxylon": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Swietenia": { + "p": "Meliaceae", + "c": [], + "n": "mahogany", + "r": "GENUS" + }, + "Munronia": { + "p": "Meliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aurantioideae": { + "p": "Rutaceae", + "c": [ + "Aegle", + "Aeglopsis", + "Afraegle", + "Atalantia", + "Balsamocitrus", + "Bergera", + "Burkillanthus", + "Citropsis", + "Citrus", + "Clausena", + "Feroniella", + "Glycosmis", + "Limonia", + "Luvunga", + "Merope", + "Merrillia", + "Micromelum", + "Monanthocitrus", + "Murraya", + "Naringi", + "Pamburus", + "Paramignya", + "Pleiospermium", + "Poncirus", + "Severinia", + "Swinglea", + "Triphasia", + "Wenzelia", + "x Citrofortunella" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Holacantha": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleiogynium": { + "p": "Anacardiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentascyphus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Litchi": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplolobus": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crepidospermum": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scyphonychium": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alectryon": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beguea": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllotrichum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Garuga": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cubilia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blighia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Protium": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brassiantha": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elaeodendron": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allocassine": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arytera": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beiselia": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alatococcus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atalaya": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tinopsis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetragastris": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hillebrandia": { + "p": "Begoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheiloclinium": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetradiclis": { + "p": "Nitrariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jagera": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mischarytera": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Toechima": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catha": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dinghoua": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nitraria": { + "p": "Nitrariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deinbollia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagioscyphus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Celastrus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoarytera": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tribuloideae": { + "p": "Zygophyllaceae", + "c": [ + "Balanites", + "Kallstroemia", + "Kelleronia", + "Neoluederitzia", + "Sisyndite", + "Tribulopis", + "Tribulus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Aucoumea": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schleichera": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tristiropsis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bursera": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthothamnus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peganum": { + "p": "Nitrariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ungnadia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brexiella": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trigonachras": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pometia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Santiria": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepiderema": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyoneura": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthoceroideae": { + "p": "Sapindaceae", + "c": [ + "Xanthoceras" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Xerospermum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriocoelum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scutinanthe": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cnesmocarpon": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diploglottis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euonymus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Commiphora": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stadtmannia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sisyrolepis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythrophysa": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hippocastanoideae": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Dodonaeoideae": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Corynocarpus": { + "p": "Corynocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Placodiscus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrameles": { + "p": "Tetramelaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Delavaya": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pavieasia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Storthocalyx": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elattostachys": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gongrodiscus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tsingya": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pappea": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blighiopsis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picrolemma": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Octomeles": { + "p": "Tetramelaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sapindoideae": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Datisca": { + "p": "Datiscaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cupania": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porocystis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Simaba": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thouinidium": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Koelreuteria": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Denhamia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zygophylloideae": { + "p": "Zygophyllaceae", + "c": [ + "Augea", + "Fagonia", + "Melocarpum", + "Roepera", + "Tetraena", + "Zygophyllum" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Matayba": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coriaria": { + "p": "Coriariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloeocarpus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picrasma": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kirkia": { + "p": "Kirkiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balsas": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aporrhiza": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossopetalum": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidopetalum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tristira": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Simarouba": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paranephelium": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Molinaea": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicarpellum": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lychnodiscus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tina": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepisanthes": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boswellia": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blomia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conchopetalum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidocupania": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brexia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triomma": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcopteryx": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcotoechia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glenniea": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudopteris": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sapindus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Krameria": { + "p": "Krameriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhysotoechia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Soulamea": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nephelium": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chouxia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dilodendron": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canotia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cucumis x Cucurbita": { + "p": "Cucurbitaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cassine": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Empleuridium": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Samadera": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erioglossum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pierreodendron": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allophylastrum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osmelia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vouarana": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neotina": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chimborazoa": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chytranthus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cupaniopsis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macphersonia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stocksia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podonephelium": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guioa": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hebecoccus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Castanospora": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Synima": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphloia": { + "p": "Aphloiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tripterodendron": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hirania": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stadmannia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplocoelum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canarium": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laccodiscus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Seetzenioideae": { + "p": "Zygophyllaceae", + "c": [ + "Seetzenia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Apatophyllum": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinoradlkofera": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bequaertia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quillaja": { + "p": "Quillajaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Toulicia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camptolepis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lecaniodiscus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gereaua": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudima": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trattinnickia": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Otonephelium": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Morkillioideae": { + "p": "Zygophyllaceae", + "c": [ + "Morkillia", + "Sericodes", + "Viscainoa" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pancovia": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amesiodendron": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quassia": { + "p": "Simaroubaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Placioscyphus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mischocarpus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Begonia": { + "p": "Begoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dimocarpus": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplocoelopsis": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Smelophyllum": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malacocarpus": { + "p": "Nitrariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radlkofera": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ambilobea": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Larreoideae": { + "p": "Zygophyllaceae", + "c": [ + "Bulnesia", + "Gonopterodendron", + "Guaiacum", + "Larrea", + "Pintoa", + "Plectrocarpa", + "Porlieria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Hornea": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dacryodes": { + "p": "Burseraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zollingeria": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Otophora": { + "p": "Sapindaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Papilionoideae": { + "p": "Fabaceae", + "c": [ + "50 kb inversion clade", + "ADA clade", + "Cladrastis clade" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Caamembeca": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caesalpinioideae": { + "p": "Fabaceae", + "c": [ + "Caesalpinia clade", + "Cassia clade", + "Dimorphandra Group A", + "Dimorphandra Group B", + "mimosoid clade", + "Peltophorum clade", + "Tachigali clade", + "Umtiza clade" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Evonymopsis": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aspicarpa": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monimopetalum": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balgoya": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acalyphoideae": { + "p": "Euphorbiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Sarawakodendron": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schistostemon": { + "p": "Humiriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hualania": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salaciopsis": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monteverdia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypsophila": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kokoona": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macgregoria": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Duckesia": { + "p": "Humiriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Badiera": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophopetalum": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peritassa": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salacighia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hartogiopsis": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricerma": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedraianthera": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Moutabea": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salacia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platypterocarpus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cercidoideae": { + "p": "Fabaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Centroplacus": { + "p": "Centroplacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monnina": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthosphenia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quetzalia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adelphia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pera": { + "p": "Peraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterosamara": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthocladus": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hippocrateoideae": { + "p": "Celastraceae", + "c": [ + "Anthodon", + "Apodostigma", + "Campylostemon", + "Cuervea", + "Elachyptera", + "Helictonema", + "Hippocratea", + "Hylenaea", + "Loeseneriella", + "Plagiopteron", + "Prionostemma", + "Pristimera", + "Reissantia", + "Semialarium", + "Simicratea", + "Simirestis", + "Tristemonanthus", + "Trochantha" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Acmanthera": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polycardia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hebecarpa": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Robsonodendron": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Duparquetioideae": { + "p": "Fabaceae", + "c": [ + "Duparquetia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Lophopyxis": { + "p": "Lophopyxidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peripterygia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scyphostegioideae": { + "p": "Salicaceae", + "c": [ + "Dianyuea", + "Scyphostegia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Podostemoideae": { + "p": "Podostemaceae", + "c": [ + "Apinagia", + "Castelnavia", + "Ceratolacis", + "Cipoia", + "Cladopus", + "Ctenobryum", + "Diamantina", + "Dicraeanthus", + "Diplobryum", + "Djinga", + "Endocaulos", + "Farmeria", + "Griffithella", + "Hanseniella", + "Hydrobryopsis", + "Hydrobryum", + "Hydrodiscus", + "Inversodicraea", + "Jenmaniella", + "Laosia", + "Ledermanniella", + "Leiothylax", + "Letestuella", + "Lophogyne", + "Macarenia", + "Macropodiella", + "Marathrum", + "Monandriella", + "Monostylis", + "Mourera", + "Noveloa", + "Oserya", + "Paracladopus", + "Podostemum", + "Polypleurum", + "Rhyncholacis", + "Saxicolella", + "Sphaerothylax", + "Stonesia", + "Thawatchaia", + "Thelethylax", + "Vanroyenella", + "Willisia", + "Winklerella", + "Zehnderia", + "Zeylanidium" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Euphorbioideae": { + "p": "Euphorbiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Aenigmatanthera": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhamphopetalum": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monrosia": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clutia": { + "p": "Peraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goniodiscus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterocelastrus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barnhartia": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Suriana": { + "p": "Surianaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glyptopetalum": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Menepetalum": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polygala": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloveria": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhizanthes": { + "p": "Rafflesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trigonia": { + "p": "Trigoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crotonoideae": { + "p": "Euphorbiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Lydenburgia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Endopleura": { + "p": "Humiriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hexaspora": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthophyllum": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Humiria": { + "p": "Humiriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thyrsosalacia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bonnetia": { + "p": "Bonnetiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnosporia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elatine": { + "p": "Elatinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parnassia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pottingeria": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diclidanthera": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bhesa": { + "p": "Centroplacaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Epirixanthes": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maytenus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Securidaca": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caryocar": { + "p": "Caryocaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stackhousia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratonia clade": { + "p": "Fabaceae", + "c": [ + "Acrocarpus", + "Ceratonia" + ], + "n": "", + "r": "CLADE" + }, + "Irvingia": { + "p": "Irvingiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Archytaea": { + "p": "Bonnetiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lauridia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drypetes": { + "p": "Putranjivaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sibangea": { + "p": "Putranjivaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xylonymus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tontelea": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pogonophora": { + "p": "Peraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Torralbasia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plenckia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amorimia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alicia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruptiliocarpon": { + "p": "Lepidobotryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tripterygium": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dialioideae": { + "p": "Fabaceae", + "c": [ + "Androcalymma", + "Apuleia", + "Baudouinia", + "Dialiinae clade", + "Dialium", + "Dicorynia", + "Distemonanthus", + "Eligmocarpus", + "Kalappia", + "Koompassia", + "Labichea", + "Martiodendron", + "Mendoravia", + "Petalostylis", + "Poeppigia", + "Storckiella", + "Uittienia", + "Zenia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Salvadoropsis": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mortonia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthodiscus": { + "p": "Caryocaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Klainedoxa": { + "p": "Irvingiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rzedowskia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siphonodon": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurostylia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mystroxylon": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Comesperma": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tristichoideae": { + "p": "Podostemaceae", + "c": [ + "Cussetia", + "Dalzellia", + "Indodalzellia", + "Indotristicha", + "Terniopsis", + "Tristicha" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Vantanea": { + "p": "Humiriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desbordesia": { + "p": "Irvingiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tripterococcus": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maurocenia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zinowiewia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ploiarium": { + "p": "Bonnetiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salomonia": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Muraltia": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atroxima": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidobotrys": { + "p": "Lepidobotryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phlebotaenia": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriandra": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Moya": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polygaloides": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carpolobia": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trigoniastrum": { + "p": "Trigoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bredemeyera": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wilczekra": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sapria": { + "p": "Rafflesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhinotropis": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cadellia": { + "p": "Surianaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wimmeria": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bergia": { + "p": "Elatinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Recchia": { + "p": "Surianaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haydenoxylon": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnospora": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Putterlickia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrasiphon": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gyminda": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paxistima": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asemeia": { + "p": "Polygalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guilfoylia": { + "p": "Surianaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sacoglottis": { + "p": "Humiriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepuropetalon": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fraunhofera": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Detarioideae": { + "p": "Fabaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Microtropis": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptelidium": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Humiriastrum": { + "p": "Humiriaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stylobasium": { + "p": "Surianaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Putranjiva": { + "p": "Putranjivaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psammomoya": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schaefferia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rafflesia": { + "p": "Rafflesiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acridocarpus": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudosalacia": { + "p": "Celastraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Weddellinoideae": { + "p": "Podostemaceae", + "c": [ + "Weddellina" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Madagasikaria": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophanthera": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Millegrana": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphedamnocarpus": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echinopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gomphia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxossia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spachea": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heladena": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tirpitzia": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quiina": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sauvagesia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochthocosmus": { + "p": "Ixonanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophira": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viola": { + "p": "Violaceae", + "c": [ + "Viola subgen. Neoandinium", + "Viola subgen. Viola" + ], + "n": "", + "r": "GENUS" + }, + "Verrucularina": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microsteira": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterandra": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afroqueta": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pibirioideae": { + "p": "Passifloraceae", + "c": [ + "Pibiria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Stapfiella": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psychopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhabdophyllum": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melicytus": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochna": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mitostemma": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptopetalum": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isodendrion": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrapterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peixotoa": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radiola": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hiraea": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrastylis": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dinemagonum": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reinwardtia": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euthemis": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Basananthe": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ancistrothyrsus": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pombalia": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gloeospermum": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caucanthus": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burdachia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ouratea": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mascagnia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sclerolinon": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyrillopsis": { + "p": "Ixonanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossostemma": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Froesia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hybanthopsis": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hiptage": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricomaria": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viridivia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decorsella": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malpighia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ixchelia": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hebepetalum": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Piriqueta": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glandonia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stigmaphyllon": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylospermum": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hekkingia": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paropsia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Durandea": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barnebya": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schuurmansia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllocosmus": { + "p": "Ixonanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orthion": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Passiflora": { + "p": "Passifloraceae", + "c": [], + "n": "passionflowers", + "r": "GENUS" + }, + "Schweiggeria": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gaudichaudia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenolinum": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hugonia": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Godoya": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indosinia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roucheria": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jaracatia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calcicola": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rinoreocarpus": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ixonanthes": { + "p": "Ixonanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schlechterina": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pigea": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allexis": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leonia": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mathurina": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Janusia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corynostylis": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diaspis": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flabellariopsis": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachylophon": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Niedenzuella": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perissocarpa": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Krukoviella": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diacidia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Touroulia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blepharandra": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allantospermum": { + "p": "Ixonanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poecilandra": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Smeathmannia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Banisteriopsis": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Efulensia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dinemandra": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camarea": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dilkea": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jubelina": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenarake": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thryallis": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricliceras": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasiocarpus": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyalocalyx": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Digoniopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indorouchera": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schuurmansiella": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Turnera": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mezia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Luxemburgia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Henleophytum": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diporidium": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flabellaria": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indovethia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicella": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisadenia": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cordobia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coleostachys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cespedesia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amphirrhox": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anchietea": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brackenridgea": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Discladium": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carolus": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lacistema": { + "p": "Lacistemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malesherbia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Byrsonima": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Christianella": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Medusagyne": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lozania": { + "p": "Lacistemataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wallacea": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androsiphonia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elvasia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fleurydora": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tristellateia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lacunaria": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agatea": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenanthe": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erblichia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malpighiodes": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptilochaeta": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galphimia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhynchophora": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bronwenia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heteropterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triaspis": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cliococca": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mcvaughia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ectopopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arboa": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Testulea": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deidamia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blastemanthus": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balanops": { + "p": "Balanopaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fusispermum": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mionandra": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callaeum": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paypayrola": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loewia": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hybanthus": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philacra": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philgamia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hesperolinon": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philbornea": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ryssopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rinorea": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Excentradenia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Linum": { + "p": "Linaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aspidopterys": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Noisettia": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mayanaea": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Idertia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scyphellandra": { + "p": "Violaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barteria": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neckia": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenoa": { + "p": "Passifloraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhytidanthera": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bunchosia": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tyleria": { + "p": "Ochnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gallardoa": { + "p": "Malpighiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carsonia": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dissiliaria": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dactyladenia": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenopus": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Whyanbeelia": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nectaropetalum": { + "p": "Erythroxylaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Moquilea": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclobalanopsis": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Notholithocarpus": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chrysobalanus": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dimorphocalyx": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petalostigma": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cordillera": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sieruela": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aristogeitonia": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stachyandra": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Magnistipula": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micrantheum": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geobalanus": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anopyxis": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sesamoides": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hunga": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Forchhammeria": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kandelia": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Borthwickia": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chrysolepis": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gynotroches": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hirtella": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythroxylum": { + "p": "Erythroxylaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rorida": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trigonobalanus": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arivela": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Blepharistemma": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macarisia": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dactylopetalum": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perrottetia": { + "p": "Dipentodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coalisina": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "New World clade": { + "p": "Cleomaceae", + "c": [ + "Andinocleome", + "Cleoserrata", + "Iltisiella", + "Mitostylis", + "Physostemon", + "Podandrogyne", + "Tarenaya" + ], + "n": "", + "r": "CLADE" + }, + "Ctenolophon": { + "p": "Ctenolophonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Austrobuxus": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cleome": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kersia": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllanthoideae": { + "p": "Phyllanthaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Neoroepera": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetracoccus": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isomeris": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Koeberlinia": { + "p": "Koeberliniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptobalanus": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tapura": { + "p": "Dichapetalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Randonia": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paradrypetes": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maranthes": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galearia": { + "p": "Pandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bafodeya": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Azima": { + "p": "Salvadoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Angelesia": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceriops": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Panda": { + "p": "Pandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acioa": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microdesmis": { + "p": "Pandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carallia": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goupia": { + "p": "Goupiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scagea": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dactylaena": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sterigmapetalum": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lithocarpus": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thulinella": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androstachys": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salvadora": { + "p": "Salvadoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fagus": { + "p": "Fagaceae", + "c": [], + "n": "beech trees", + "r": "GENUS" + }, + "Kostermanthus": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stachystemon": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pinacopodium": { + "p": "Erythroxylaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polanisia": { + "p": "Cleomaceae", + "c": [], + "n": "clammyweed", + "r": "GENUS" + }, + "Neocarya": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Castanopsis": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bruguiera": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afrolicania": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhizophora": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oligomeris": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microdesmia": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxystylis": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cleomella": { + "p": "Cleomaceae", + "c": [], + "n": "stinkweed", + "r": "GENUS" + }, + "Aneulophus": { + "p": "Erythroxylaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colombobalanus": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Areocleome": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atuna": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Licania": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picrodendron": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hyaenanche": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Piranhea": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossostylis": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reseda": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gaulettia": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grangeria": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gilgella": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parinari": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euphronia": { + "p": "Euphroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipentodon": { + "p": "Dipentodontaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peritoma": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corynandra": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podocalyx": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gynandropsis": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quercus": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichapetalum": { + "p": "Dichapetalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Couepia": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Choriceras": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipterygium": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parastemon": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochradenus": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stixis": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemiscola": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stylidocleome": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Castanea": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cassipourea": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stephanopodium": { + "p": "Dichapetalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antidesmatoideae": { + "p": "Phyllanthaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Formanodendron": { + "p": "Fagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exellodendron": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sankowskya": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pellacalyx": { + "p": "Rhizophoraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caylusea": { + "p": "Resedaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parinariopsis": { + "p": "Chrysobalanaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oldfieldia": { + "p": "Picrodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcotoxicum": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boscia": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisocapparis": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tovaria": { + "p": "Tovariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Huertea": { + "p": "Tapisciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Comptonia": { + "p": "Myricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Juglans": { + "p": "Juglandaceae", + "c": [], + "n": "walnuts", + "r": "GENUS" + }, + "Alfaropsis": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Morisonia": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tirania": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Capparidastrum": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melianthus": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tapiscia": { + "p": "Tapisciaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophozonia": { + "p": "Nothofagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platycarya": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Morella": { + "p": "Myricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ritchiea": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alfaroa": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Engelhardia": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Emblingia": { + "p": "Emblingiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vasconcellea": { + "p": "Caricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maerua": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balbisia": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cadaba": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carya": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Betula": { + "p": "Betulaceae", + "c": [], + "n": "birches", + "r": "GENUS" + }, + "Tersonia": { + "p": "Gyrostemonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beautempsia": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euadenia": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Akania": { + "p": "Akaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alnus": { + "p": "Betulaceae", + "c": [], + "n": "alders", + "r": "GENUS" + }, + "Atamisquea": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bretschneidera": { + "p": "Akaniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jacaratia": { + "p": "Caricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colicodendron": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carica": { + "p": "Caricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Preslianthus": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Greyia": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buchholzia": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Capparis": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quadrella": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetilla": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viviania": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrica": { + "p": "Myricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhynchotheca": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codonocarpus": { + "p": "Gyrostemonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thilachium": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gyrostemon": { + "p": "Gyrostemonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclocarya": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limnanthes": { + "p": "Limnanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Annamocarya": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carpinus": { + "p": "Betulaceae", + "c": [], + "n": "hornbeams", + "r": "GENUS" + }, + "Neothorelia": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ostrya": { + "p": "Betulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neocapparis": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corylus": { + "p": "Betulaceae", + "c": [], + "n": "hazelnuts", + "r": "GENUS" + }, + "Francoa": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apophyllum": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Batis": { + "p": "Bataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mesocapparis": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnostoma": { + "p": "Casuarinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterocarya": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ostryopsis": { + "p": "Betulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentadiplandra": { + "p": "Pentadiplandraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Casuarina": { + "p": "Casuarinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bachmannia": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calanthea": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canacomyrica": { + "p": "Myricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Horovitzia": { + "p": "Caricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreomunnea": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Belencita": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothofagus": { + "p": "Nothofagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Steriphoma": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhoiptelea": { + "p": "Juglandaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jarilla": { + "p": "Caricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wendtia": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bersama": { + "p": "Francoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monilicarpa": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cynophalla": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neocalyptrocalyx": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fuscospora": { + "p": "Nothofagaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Setchellanthus": { + "p": "Setchellanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cylicomorpha": { + "p": "Caricaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceuthostoma": { + "p": "Casuarinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crateva": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Capparicordis": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gerrardina": { + "p": "Gerrardinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladostemon": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichroanthus": { + "p": "Brassicaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allocasuarina": { + "p": "Casuarinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Floerkea": { + "p": "Limnanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wislizenia": { + "p": "Cleomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caphexandra": { + "p": "Capparaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tiganophyton": { + "p": "Tiganophytaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ludwigioideae": { + "p": "Onagraceae", + "c": [ + "Ludwigia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Kelleria": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "California": { + "p": "Geraniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jedda": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lethedon": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trophaeastrum": { + "p": "Tropaeolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriosolena": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phaleria": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tepuianthus": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salicornia subgen. Amerocornia": { + "p": "Salicornia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Daphnimorpha": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Qualea": { + "p": "Vochysiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stephanodaphne": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhamnoneuron": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stellera": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amyxa": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gonystylus": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geranium": { + "p": "Geraniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thecanthes": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipterocarpoideae": { + "p": "Dipterocarpaceae", + "c": [ + "Anisoptera", + "Anthoshorea", + "Balanocarpus", + "Cotylelobium", + "Dipterocarpus", + "Doona", + "Dryobalanops", + "Hopea", + "Neohopea", + "Parashorea", + "Pentacme", + "Richetia", + "Rubroshorea", + "Shorea", + "Stemonoporus", + "Upuna", + "Vateria", + "Vateriopsis", + "Vatica" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Monotoideae": { + "p": "Dipterocarpaceae", + "c": [ + "Marquesia", + "Monotes", + "Pseudomonotes", + "Trillesanthus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Linostoma": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ticodendron": { + "p": "Ticodendraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Struthiola": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goodallia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arnhemia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psiloxyloideae": { + "p": "Myrtaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Funifera": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petenaea": { + "p": "Petenaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Octolepis": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Muntingia": { + "p": "Muntingiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pimelea": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrtoideae": { + "p": "Myrtaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Lachnaea": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tropaeolum": { + "p": "Tropaeolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcocaulon": { + "p": "Geraniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Enkleia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Edgeworthia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasiadenia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alzatea": { + "p": "Alzateaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Passerina": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thymelaea": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dais": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callisthene": { + "p": "Vochysiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atemnosiphon": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Shepherdia": { + "p": "Elaeagnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salvertia": { + "p": "Vochysiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryadoideae": { + "p": "Rosaceae", + "c": [ + "Cercocarpus", + "Chamaebatia", + "Dryas", + "Purshia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Bixa": { + "p": "Bixaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solmsia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diegodendron": { + "p": "Bixaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Daphne": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cytinus": { + "p": "Cytinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Synaptolepis": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erodium": { + "p": "Geraniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rosoideae": { + "p": "Rosaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Diplomorpha": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hippophae": { + "p": "Elaeagnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gnidia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Linodendron": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Salicornia subgen. Salicornia": { + "p": "Salicornia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Elaeagnus": { + "p": "Elaeagnaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Magallana": { + "p": "Tropaeolaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Deltaria": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erismadelphus": { + "p": "Vochysiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Craterosiphon": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schoenobiblus": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Araeoandra": { + "p": "Geraniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bdallophytum": { + "p": "Cytinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monsonia": { + "p": "Geraniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophostoma": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruizterania": { + "p": "Vochysiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ovidia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicraspidia": { + "p": "Muntingiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gyrinops": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aetoxylon": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrostellera": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Korupodendron": { + "p": "Vochysiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dirca": { + "p": "Thymelaeaceae", + "c": [], + "n": "leatherwoods", + "r": "GENUS" + }, + "Synandrodaphne": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasiosiphon": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Daphnopsis": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diarthron": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aquilaria": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicranolepis": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drapetes": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lagetta": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erisma": { + "p": "Vochysiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cochlospermum": { + "p": "Bixaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pelargonium": { + "p": "Geraniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypseocharis": { + "p": "Geraniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wikstroemia": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vochysia": { + "p": "Vochysiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amygdaloideae": { + "p": "Rosaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Salicornia subgen. Afrocornia": { + "p": "Salicornia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Peddiea": { + "p": "Thymelaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amoreuxia": { + "p": "Bixaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Moringa": { + "p": "Moringaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pakaraimaeoideae": { + "p": "Dipterocarpaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Onagroideae": { + "p": "Onagraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Salicornia subgen. Arthrocnemoides": { + "p": "Salicornia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Pteroceltis": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parasponia": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Getonia": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meiostemon": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planera": { + "p": "Ulmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Combretum": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhynchocalyx": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemiptelea": { + "p": "Ulmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parasponia x Trema": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Penaea": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Axinandra": { + "p": "Crypteroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Holoptelea": { + "p": "Ulmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prainea": { + "p": "Moraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glischrocolla": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neurada": { + "p": "Neuradaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strephonema": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Terminalia": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barbeya": { + "p": "Barbeyaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Olinia": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lumnitzera": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cannabis": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sonderothamnus": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laguncularia": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lozanella": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trema": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stylapterus": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conocarpus": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "rhamnoid group": { + "p": "Rhamnaceae", + "c": [ + "Fenghwaia" + ], + "n": "", + "r": "CLADE" + }, + "Gironniera": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Celtis": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dansiea": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dactylocladus": { + "p": "Crypteroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neuradopsis": { + "p": "Neuradaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Humulus": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bucida": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Achudemia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buchenavia": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chaetachme": { + "p": "Ulmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guiera": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zelkova": { + "p": "Ulmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteleopsis": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachysiphon": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aphananthe": { + "p": "Cannabaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ampelocera": { + "p": "Ulmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anogeissus": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ulmus": { + "p": "Ulmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calopyxis": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saltera": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Endonema": { + "p": "Penaeaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melastomatoideae": { + "p": "Melastomataceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Macropteranthes": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crypteronia": { + "p": "Crypteroniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Olisbeoideae": { + "p": "Melastomataceae", + "c": [ + "Memecylon", + "Mouriri", + "Spathandra", + "Votomita", + "Warneckea" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Phyllostylon": { + "p": "Ulmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thiloa": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quisqualis": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calycopteris": { + "p": "Combretaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grielum": { + "p": "Neuradaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenaria": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helicteroideae": { + "p": "Malvaceae", + "c": [ + "Durio", + "Helicteres", + "Mansonia", + "Reevesia", + "Triplochiton", + "Ungeria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Neodistemon": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laportea": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hua": { + "p": "Huaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mediusella": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gibbsia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cnestis": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Byttnerioideae": { + "p": "Malvaceae", + "c": [ + "Abroma", + "Androcalva", + "Ayenia", + "Byttneria", + "Commersonia", + "Dicarpidium", + "Glossostemon", + "Guazuma", + "Guichenotia", + "Hannafordia", + "Hermannia", + "Herrania", + "Keraudrenia", + "Kleinhovia", + "Lasiopetalum", + "Leptonychia", + "Lysiosepalum", + "Maxwellia", + "Megatritheca", + "Melochia", + "Rayleya", + "Rulingia", + "Scaphopetalum", + "Seringia", + "Theobroma", + "Thomasia", + "Waltheria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Urera": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetratheca": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vallea": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maoutia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phenax": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oxalis": { + "p": "Oxalidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zhengyia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrianthus": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platytheca": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lechea": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nesaea": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coussapoa": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hesperocnide": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heimia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hionanthera": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothocnide": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poikilospermum": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cypholophus": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bombacoideae": { + "p": "Malvaceae", + "c": [ + "Adansonia", + "Aguiaria", + "Bernoullia", + "Bombax", + "Camptostemon", + "Catostemma", + "Cavanillesia", + "Ceiba", + "Chiranthodendron", + "Eriotheca", + "Fremontodendron", + "Gyranthera", + "Huberodendron", + "Kostermansia", + "Krapovickasia", + "Ochroma", + "Pachira", + "Patinoa", + "Pentaplaris", + "Phragmotheca", + "Pochota", + "Pseudobombax", + "Rhodognaphalon", + "Scleronema", + "Septotheca", + "Spirotheca" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Sericolea": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pellionia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decodon": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gyrosphragma": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dirachma": { + "p": "Dirachmaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Debregeasia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucosyke": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helianthemum": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xyloolaena": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Averrhoa": { + "p": "Oxalidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aistopetalum": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cnestidium": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galpinia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pemphis": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bauera": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcochlamys": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metatrophis": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dombeyoideae": { + "p": "Malvaceae", + "c": [ + "Andringitra", + "Astyria", + "Burretiodendron", + "Cheirolaena", + "Dombeya", + "Eriolaena", + "Excentrodendron", + "Harmsia", + "Helmiopsiella", + "Helmiopsis", + "Nesogordonia", + "Paradombeya", + "Paramelhania", + "Pentapetes", + "Pterospermum", + "Ruizia", + "Schoutenia", + "Trochetia", + "Trochetiopsis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Acsmithia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malvoideae": { + "p": "Malvaceae", + "c": [ + "Abelmoschus", + "Abutilon", + "Acaulimalva", + "Alcea", + "Allosidastrum", + "Allowissadula", + "Althaea", + "Alyogyne", + "Andeimalva", + "Anisodontea", + "Anoda", + "Anotea", + "Asterotrichion", + "Azanza", + "Bakeridesia", + "Bastardia", + "Bastardiastrum", + "Bastardiopsis", + "Batesimalva", + "Billieturnera", + "Bombycidendron", + "Briquetia", + "Briquetiastrum", + "Callianthe", + "Callirhoe", + "Calyculogygas", + "Cenocentrum", + "Cephalohibiscus", + "Sidalcea", + "Chorisia", + "Cienfuegosia", + "Coelostegia", + "Corynabutilon", + "Cristaria", + "Cullenia", + "Decaschistia", + "Dendrosida", + "Dirhamphis", + "Eremalche", + "Fioria", + "Fryxellia", + "Fuertesimalva", + "Gaya", + "Gossypioides", + "Gossypium", + "Gynatrix", + "Hampea", + "Helicteropsis", + "Herissantia", + "Hibiscadelphus", + "Hochreutinera", + "Hoheria", + "Horsfordia", + "Howittia", + "Humbertiella", + "Iliamna", + "Jumelleanthus", + "Kearnemalvastrum", + "Kitaibela", + "Kokia", + "Kosteletzkya", + "Kydia", + "Lagunaria", + "Lavatera", + "Lawrencia", + "Lebronnecia", + "Lecanophora", + "Macrostelia", + "Malachra", + "Malacothamnus", + "Malope", + "Malva", + "Malvalthaea", + "Malvastrum", + "Malvaviscus", + "Malvella", + "Matisia", + "Megistostegium", + "Meximalva", + "Modiola", + "Modiolastrum", + "Monteiroa", + "Napaea", + "Navaea", + "Nayariophyton", + "Neesia", + "Neobrittonia", + "Nototriche", + "Palaua", + "Papuodendron", + "Pavonia", + "Peltaea", + "Periptera", + "Perrierophytum", + "Phragmocarpidium", + "Phymosia", + "Plagianthus", + "Pseudabutilon", + "Quararibea", + "Radyera", + "Rhynchosida", + "Ripariosida", + "Robinsonella", + "Hibiscus", + "Senra", + "Sida", + "Sidasodes", + "Sidastrum", + "Sphaeralcea", + "Talipariti", + "Tarasa", + "Tetrasida", + "Thepparatia", + "Thespesia", + "Thespesiopsis", + "Uladendron", + "Urena", + "Urocarpidium", + "Wercklea", + "Wissadula" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Halimium": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Duabanga": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Woodfordia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tremandra": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pouzolzia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Byrsocarpus": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothotalisia": { + "p": "Picramniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rousselia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trapa": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elatostema": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoconnarus": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrophyllum": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lythrum": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gonostegia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Davidsonia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dapania": { + "p": "Oxalidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Connarus": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grewioideae": { + "p": "Malvaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Sonneratia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremolaena": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anodopetalum": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Capuronia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gesnouinia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizolaena": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pehria": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ackama": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemandradenia": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymodoxa": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Girardinia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Archiboehmeria": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pourouma": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tilioideae": { + "p": "Malvaceae", + "c": [ + "Corchoropsis", + "Craigia", + "Indagator", + "Tilia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Gyrotaenia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lourtella": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petelotiella": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perrierodendron": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamabainia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boehmeria": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Punica": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lagerstroemia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alvaradoa": { + "p": "Picramniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crocanthemum": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ellipanthus": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sloanea": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cistus": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Manotes": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fumana": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ammannia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haroldiella": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemistylus": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peripentadenia": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptolaena": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urtica": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nanocnide": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didiplis": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Discocnide": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cuphea": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Musanga": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Obetia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peplis": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Touchardia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hudsonia": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physocalymma": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pipturus": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Biophytum": { + "p": "Oxalidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aceratium": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crinodendron": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lecanthus": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ginoria": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rourea": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Australina": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agelaea": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcotheca": { + "p": "Oxalidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Forsskaolea": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aenigmanu": { + "p": "Picramniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myriocarpa": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xerochlamys": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalotus": { + "p": "Cephalotaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neraudia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astrothalamus": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrocnide": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurophora": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callicoma": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcopilea": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentachlaena": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vismianthus": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sterculioideae": { + "p": "Malvaceae", + "c": [ + "Acropogon", + "Argyrodendron", + "Brachychiton", + "Chlamydocola", + "Cola", + "Firmiana", + "Franciscodendron", + "Heritiera", + "Hildegardia", + "Melhania", + "Neoregnellia", + "Octolobus", + "Pterocymbium", + "Pterygota", + "Scaphium", + "Sterculia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cecropia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parietaria": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilea": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodolaena": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cunonia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratopetalum": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aristotelia": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcolaena": { + "p": "Sarcolaenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Koehneria": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elaeocarpus": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tuberaria": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brownlowioideae": { + "p": "Malvaceae", + "c": [ + "Berrya", + "Brownlowia", + "Carpodiptera", + "Christiana", + "Diplodiscus", + "Jarandersonia", + "Pentace" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Diplusodon": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caldcluvia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lawsonia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dubouzetia": { + "p": "Elaeocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Droguetia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afrostyrax": { + "p": "Huaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picramnia": { + "p": "Picramniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Soleirolia": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lafoensia": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rotala": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrataxis": { + "p": "Lythraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pakaraimaea": { + "p": "Cistaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreocnide": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jollydora": { + "p": "Connaraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Procris": { + "p": "Urticaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipelta": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pycnandra": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acicarpha": { + "p": "Calyceraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pouteria": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Linnaea": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Donella": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sideroxylon": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetradoxa": { + "p": "Adoxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palaquium": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neolemonniera": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Karrabina": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcosperma": { + "p": "Sarcospermatoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Labramia": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pancheria": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calycera": { + "p": "Calyceraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sersalisia": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diabelia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pichonia": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symphoricarpos": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochrothallus": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Patrinia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malacantha": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vesselowskya": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zabelia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipsacus": { + "p": "Caprifoliaceae", + "c": [], + "n": "teasels", + "r": "GENUS" + }, + "Leptostylis": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spiraeopsis": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Achrouteria": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brunellia": { + "p": "Brunelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chromolucuma": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Northia": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micropholis": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sambucus": { + "p": "Adoxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Breviea": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lucuma": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fedia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Synsepalum": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Weigela": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bassecoia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Martiusella": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aubregrinia": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lomelosia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amorphospermum": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Morina": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Succisella": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dialyceras": { + "p": "Sphaerosepalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gamocarpha": { + "p": "Calyceraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nardostachys": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthocalyx": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Weinmannia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hooglandia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boopis": { + "p": "Calyceraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burckella": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lonicera": { + "p": "Caprifoliaceae", + "c": [], + "n": "honeysuckles", + "r": "GENUS" + }, + "Triosteum": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vitellariopsis": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vesalea": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mimusops": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eberhardtia": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucryphia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tieghemella": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterocephalodes": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lamanonia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Capurodendron": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Knautia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nastanthus": { + "p": "Calyceraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Torricellia": { + "p": "Torricelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterocephalidium": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Englerophytum": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chrysophyllum": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Omphalocarpum": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prieurella": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pradosia": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Valeriana": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corbassona": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Beccariella": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoweinmannia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tsebona": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Argania": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Centranthus": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diploknema": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isonandra": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kolkwitzia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Faucherea": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Valerianella": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melanophylla": { + "p": "Torricelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pycnocomon": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Autranella": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gambeya": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lecomtedoxa": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vitellaria": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Van-royena": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Succisa": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Madhuca": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plectritis": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abelia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xantolis": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Delpydora": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Niemeyera": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adoxa": { + "p": "Adoxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baillonella": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trouettia": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sebertia": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Moschopsis": { + "p": "Calyceraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Planchonella": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinadoxa": { + "p": "Adoxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gillbeea": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scabiosa": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ecclinusa": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizomeria": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptothladia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viburnum": { + "p": "Adoxaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leycesteria": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diervilla": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Labourdonnaisia": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalaria": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhopalocarpus": { + "p": "Sphaerosepalaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleioluma": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Manilkara": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nesoluma": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Magodendron": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heptacodium": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cornuella": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Griselinia": { + "p": "Griseliniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spiniluma": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Payena": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterocephalus": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcaulus": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geissois": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Letestua": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neohemsleya": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pullea": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diploon": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sixalix": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bemangidia": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platylophus": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aulandra": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aralidium": { + "p": "Torricelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aningeria": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinosideroxylon": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Krausella": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudoscabiosa": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elaeoluma": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triplostegia": { + "p": "Caprifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ragala": { + "p": "Chrysophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Opocunonia": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spiraeanthemum": { + "p": "Cunoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Inhambanella": { + "p": "Sapotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pertyoideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Mutisioideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Corymbioideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Hecastocleidoideae": { + "p": "Asteraceae", + "c": [ + "Hecastocleis" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Stifftioideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Dicomoideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Vernonioideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Asteroideae": { + "p": "Asteraceae", + "c": [ + "Heliantheae alliance" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Forstera": { + "p": "Stylidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wunderlichioideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Phyllachne": { + "p": "Stylidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Donatia": { + "p": "Stylidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Levenhookia": { + "p": "Stylidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreostylidium": { + "p": "Stylidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnarrhenoideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Stylidium": { + "p": "Stylidiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gochnatioideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Carduoideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Tarchonanthoideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Famatinanthoideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Barnadesioideae": { + "p": "Asteraceae", + "c": [ + "Archidasyphyllum", + "Arnaldoa", + "Barnadesia", + "Chuquiraga", + "Dasyphyllum", + "Doniophyton", + "Duseniella", + "Fulcaldea", + "Huarpea", + "Schlechtendalia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cichorioideae": { + "p": "Asteraceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Apocynoideae": { + "p": "Apocynaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Velleia": { + "p": "Goodeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diaspasis": { + "p": "Goodeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brunonia": { + "p": "Goodeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asclepiadoideae": { + "p": "Apocynaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Selliera": { + "p": "Goodeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rauvolfioideae": { + "p": "Apocynaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Periplocoideae": { + "p": "Apocynaceae", + "c": [ + "Atherandra", + "Atherolepis", + "Baroniella", + "Baseonema", + "Batesanthus", + "Buckollia", + "Camptocarpus", + "Chlorocyathus", + "Cryptolepis", + "Cryptostegia", + "Curroria", + "Decalepis", + "Ectadiopsis", + "Ectadium", + "Epistemma", + "Finlaysonia", + "Gymnanthera", + "Hemidesmus", + "Ischnolepis", + "Mondia", + "Myriopteron", + "Omphalogonus", + "Parquetina", + "Pentopetia", + "Periploca", + "Petopentia", + "Phyllanthera", + "Raphionacme", + "Sacleuxia", + "Sarcorrhiza", + "Schlechterella", + "Stelmocrypton", + "Stomatostemma", + "Streptocaulon", + "Tacazzea", + "Triodoglossum", + "Zygostelma" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Secamonoideae": { + "p": "Apocynaceae", + "c": [ + "Goniostemma", + "Pervillaea", + "Secamone", + "Secamonopsis", + "Toxocarpus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pentaptilon": { + "p": "Goodeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "core Goodeniaceae": { + "p": "Goodeniaceae", + "c": [ + "Coopernookia", + "Goodenia", + "LAD clade", + "Scaevola", + "Verreauxia" + ], + "n": "", + "r": "CLADE" + }, + "Clermontia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ornduffia": { + "p": "Menyanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rubioideae": { + "p": "Rubiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Craterocapsa": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Periomphale": { + "p": "Alseuosmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campanula": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pennantia": { + "p": "Pennantiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platyspermation": { + "p": "Alseuosmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclocodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyananthus": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Liparophyllum": { + "p": "Menyanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Araliaceae": { + "p": "Apiineae", + "c": [ + "Aralia", + "Astropanax", + "Astrotricha", + "Brassaia", + "Brassaiopsis", + "Cephalaralia", + "Cephalopanax", + "Cheirodendron", + "Chengiopanax", + "Crepinella", + "Cussonia", + "Dendropanax", + "Didiscus", + "Didymopanax", + "Eleutherococcus", + "Fatsia", + "Frodinia", + "Gamblea", + "Harmsiopanax", + "Hedera", + "Heptapleurum", + "Heteropanax", + "Kalopanax", + "Macropanax", + "Merrilliopanax", + "Meryta", + "Metapanax", + "Neocussonia", + "Neopanax", + "Neosciadium", + "Oplopanax", + "Oreopanax", + "Osmoxylon", + "Panax", + "Plerandra", + "Polyscias", + "Pseudopanax", + "Raukaua", + "Schefflera", + "Sciadodendron", + "Sciodaphyllum", + "Seemannaralia", + "Sinopanax", + "Tetrapanax", + "Trachymene", + "Trevesia", + "Tupidanthus", + "Uldinia", + "Hydrocotyle", + "Motherwellia" + ], + "n": "ginseng family", + "r": "FAMILY" + }, + "Wittsteinia": { + "p": "Alseuosmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brighamia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burmeistera": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cylindrocarpa": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenophora": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campanumoea": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Centropogon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyanea": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Memecylanthus": { + "p": "Alseuosmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyphocarpus": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colensoa": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asyneuma": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Delissea": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachydiscus": { + "p": "Alseuosmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apetahia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apiaceae": { + "p": "Apiineae", + "c": [ + "Apioideae", + "Azorelloideae", + "Mackinlayoideae", + "Saniculoideae" + ], + "n": "carrot family", + "r": "FAMILY" + }, + "Dialypetalum": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alseuosmia": { + "p": "Alseuosmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cinchonoideae": { + "p": "Rubiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Diastatea": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Argophyllum": { + "p": "Argophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nephrophyllidium": { + "p": "Menyanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Berenice": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ixoroideae": { + "p": "Rubiaceae", + "c": [ + "Gardenieae complex" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Villarsia": { + "p": "Menyanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corokia": { + "p": "Argophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Canarina": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myodocarpaceae": { + "p": "Apiineae", + "c": [ + "Delarbrea", + "Myodocarpus" + ], + "n": "", + "r": "FAMILY" + }, + "Pittosporaceae": { + "p": "Apiineae", + "c": [ + "Auranticarpa", + "Bentleya", + "Billardiera", + "Bursaria", + "Cheiranthera", + "Hymenosporum", + "Marianthus", + "Pittosporum", + "Rhytidosporum" + ], + "n": "", + "r": "FAMILY" + }, + "Downingia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nymphoides": { + "p": "Menyanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crispiloba": { + "p": "Alseuosmiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyphia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Menyanthes": { + "p": "Menyanthaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codonopsis": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Azorina": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyteuma": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carpodetus": { + "p": "Rousseaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Theilera": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orianthera": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symphyandra": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lobelia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mitreola": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spigelia": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Usteria": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wahlenbergia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllangium": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Norrisia": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachelium": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Himalacodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nesocodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pankycodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roussea": { + "p": "Rousseaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microcodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhigiophyllum": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Edraianthus": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echinocodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterocodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Labordia": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hanabusaya": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palmerella": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phelline": { + "p": "Phellinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Githopsis": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ostrowskia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizacme": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterotoma": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lysipomia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petkovia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jasione": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Theodorovia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neuburgia": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sergia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nemacladus": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siphocodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudonemacladus": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Strychnos": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentaphragma": { + "p": "Pentaphragmataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Merciera": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Logania": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Michauxia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lithotoma": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hippobroma": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cuttsia": { + "p": "Rousseaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptocodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geniostoma": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Feeria": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterochaenia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grammatotheca": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mitrasacme": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Legousia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platycodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triodanis": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Howellia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physoplexis": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wimmerella": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mostuea": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trematolobelia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porterella": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prismatocarpus": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bonyunia": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androya": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adelphacme": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Antonia": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homocodon": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petromarula": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hypsela": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peracarpa": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pratia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monopsis": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isotoma": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Treichelia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abrophyllum": { + "p": "Rousseaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roella": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Musschia": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sclerotheca": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gelsemium": { + "p": "Gelsemiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gardneria": { + "p": "Loganiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zeugandra": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Siphocampylus": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Legenere": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solenopsis": { + "p": "Campanulaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremosyne": { + "p": "Escalloniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anopterus": { + "p": "Escalloniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tribeles": { + "p": "Escalloniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Forgesia": { + "p": "Escalloniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Escallonia": { + "p": "Escalloniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Valdivia": { + "p": "Escalloniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyosma": { + "p": "Escalloniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rayenia": { + "p": "Escalloniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nebelia": { + "p": "Bruniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tittmannia": { + "p": "Bruniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Columellia": { + "p": "Columelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desfontainia": { + "p": "Columelliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arbutus": { + "p": "Arbutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arctostaphylos": { + "p": "Arbutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heliotropium": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xylococcus": { + "p": "Arbutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Argusia": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Impatiens subgen. Impatiens": { + "p": "Impatiens", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Codon": { + "p": "Codonaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ixorhea": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coldenia": { + "p": "Coldeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hilgeria": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cassiope": { + "p": "Cassiopoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schleidenia": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lennoa": { + "p": "Lennoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hoplestigma": { + "p": "Hoplestigmataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nogalia": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arctous": { + "p": "Arbutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceballosia": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euploca": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Impatiens subgen. Clavicarpa": { + "p": "Impatiens", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Myriopus": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tournefortia": { + "p": "Heliotropiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pholisma": { + "p": "Lennoaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphenostemon": { + "p": "Paracryphiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quintinia": { + "p": "Paracryphiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ornithostaphylos": { + "p": "Arbutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Comarostaphylis": { + "p": "Arbutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paracryphia": { + "p": "Paracryphiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nama": { + "p": "Namaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wigandia": { + "p": "Namaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stemonurus": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Discophora": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gastrolepis": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Turricula": { + "p": "Namaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Garrya": { + "p": "Garryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halgania": { + "p": "Ehretiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boraginoideae": { + "p": "Boraginaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Howellanthus": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tiquilia": { + "p": "Ehretiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptaulus": { + "p": "Cardiopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cordia": { + "p": "Cordiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tricardia": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ellisia": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Citronella": { + "p": "Cardiopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucommia": { + "p": "Eucommiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Codiocarpus": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eucrypta": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ehretia": { + "p": "Ehretiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pholistoma": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Medusanthera": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasianthera": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hesperochiron": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudobotrys": { + "p": "Cardiopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Enkianthus": { + "p": "Enkianthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lepidocordia": { + "p": "Ehretiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nemophila": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Varronia": { + "p": "Cordiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ilex": { + "p": "Aquifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wellstedia": { + "p": "Wellstediaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echiochiloideae": { + "p": "Boraginaceae", + "c": [ + "Antiphytum", + "Echiochilon", + "Ogastemma" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Whitmorea": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Romanzoffia": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Draperia": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllonoma": { + "p": "Phyllonomaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harrimanella": { + "p": "Harrimanelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrophyllum": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rochefortia": { + "p": "Ehretiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gomphandra": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriodictyon": { + "p": "Namaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pteleocarpa": { + "p": "Ehretiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cynoglossoideae": { + "p": "Boraginaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Bourreria": { + "p": "Ehretiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cardiopteris": { + "p": "Cardiopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gonocaryum": { + "p": "Cardiopteridaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hilsenbergia": { + "p": "Ehretiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Emmenanthe": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aucuba": { + "p": "Garryaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grisollea": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nemopanthus": { + "p": "Aquifoliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phacelia": { + "p": "Hydrophyllaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helwingia": { + "p": "Helwingiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Irvingbaileya": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hartleya": { + "p": "Stemonuraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vahlia": { + "p": "Vahliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrachondra": { + "p": "Tetrachondraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sanangoideae": { + "p": "Gesneriaceae", + "c": [ + "Sanango" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Lamioideae": { + "p": "Lamiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Paulownia": { + "p": "Paulowniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pedaliodiscus": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polypremum": { + "p": "Tetrachondraceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhaphiostylis": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kogelbergia": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Retzia": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mazus": { + "p": "Mazaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pittosporopsis": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poraqueiba": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Casimirella": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sesamothamnus": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calatola": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlamydocarya": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peronematoideae": { + "p": "Lamiaceae", + "c": [ + "Garrettia", + "Hymenopyramis", + "Peronema", + "Petraeovitex" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Metteniusa": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callicarpoideae": { + "p": "Lamiaceae", + "c": [ + "Callicarpa" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Martynia": { + "p": "Martyniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptorhabdos": { + "p": "Orobanchaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alsodeiopsis": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Josephinia": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ixianthes": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tectonoideae": { + "p": "Lamiaceae", + "c": [ + "Tectona" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Scutellarioideae": { + "p": "Lamiaceae", + "c": [ + "Holmskioldia", + "Renschia", + "Scutellaria", + "Tinnea", + "Wenchengia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Didymocarpoideae": { + "p": "Gesneriaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Ajugoideae": { + "p": "Lamiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Ceratotheca": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Teucrioideae": { + "p": "Lamiaceae", + "c": [ + "Cardioteucris", + "Clerodendranthus", + "Cyclonema", + "Faradaya", + "Kinostemon", + "Oncinocalyx", + "Spartothamnella", + "Teucridium" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Symphorematoideae": { + "p": "Lamiaceae", + "c": [ + "Congea", + "Sphenodesme", + "Symphorema" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Ottoschulzia": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Platea": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halleria": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viticoideae": { + "p": "Lamiaceae", + "c": [ + "Paravitex", + "Petitia", + "Pseudocarpidium", + "Teijsmanniodendron", + "Vitex", + "Viticipremna", + "Xatardia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Pterodiscus": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trapella": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Puchiumazus": { + "p": "Mazaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicerocaryum": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Holubia": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uncarina": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Premnoideae": { + "p": "Lamiaceae", + "c": [ + "Cornutia", + "Gmelina", + "Premna" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Prostantheroideae": { + "p": "Lamiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Euthystachys": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylostachys": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pedalium": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gesnerioideae": { + "p": "Gesneriaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Ibicella": { + "p": "Martyniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oncotheca": { + "p": "Oncothecaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stilbe": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apodytes": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Proboscidea": { + "p": "Martyniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bowkeria": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Craniolaria": { + "p": "Martyniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thomandersia": { + "p": "Thomandersiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rogeria": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cymarioideae": { + "p": "Lamiaceae", + "c": [ + "Acrymia", + "Cymaria" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Harpagophytum": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Charadrophila": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Omphalotrix": { + "p": "Orobanchaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oecopetalum": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Holoregmia": { + "p": "Martyniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cassinopsis": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nuxia": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrobangia": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plocosperma": { + "p": "Plocospermataceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Emmotum": { + "p": "Metteniusaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nepetoideae": { + "p": "Lamiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Sesamum": { + "p": "Pedaliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anastrabe": { + "p": "Stilbaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Piriadacus": { + "p": "Bignoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Torenia": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hosiea": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stachyanthus": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythranthe": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Icacina": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crepidorhopalon": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Yamazakia": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lindernia": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhamphicarpa": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Natsiatum": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leucocarpus": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mimulus": { + "p": "Phrymaceae", + "c": [], + "n": "monkey flowers", + "r": "GENUS" + }, + "Mimetanthe": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaegigas": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Silvianthus": { + "p": "Carlemanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glossostigma": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sampaiella": { + "p": "Bignoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acanthoideae": { + "p": "Acanthaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Artanema": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sleumeria": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bampsia": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Iodes": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catimbaua": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crescentiina": { + "p": "Bignoniaceae", + "c": [ + "paleotropical clade", + "Tabebuia alliance" + ], + "n": "", + "r": "CLADE" + }, + "Elacholoma": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bonnaya": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pyrenacantha": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pierranthus": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mappia": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thunbergioideae": { + "p": "Acanthaceae", + "c": [ + "Mendoncia", + "Pseudocalyx", + "Thunbergia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Potamoganos": { + "p": "Bignoniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picria": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Isabelcristinia": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phytocrene": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lavigeria": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cubitanthus": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Linderniella": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemichaena": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Miquelia": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Legazpia": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyporandra": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplacus": { + "p": "Phrymaceae", + "c": [], + "n": "bush monkeyflowers", + "r": "GENUS" + }, + "Sarcostigma": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ameroglossum": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vandellia": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carlemannia": { + "p": "Carlemanniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phryma": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dodartia": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurisanthes": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Avicennioideae": { + "p": "Acanthaceae", + "c": [ + "Avicennia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Scolophyllum": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nelsonioideae": { + "p": "Acanthaceae", + "c": [ + "Anisosepalum", + "Aymoreana", + "Elytraria", + "Gynocraterium", + "Nelsonia", + "Ophiorrhiziphyllon", + "Saintpauliopsis", + "Staurogyne" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Merrilliodendron": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desmostachys": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peplidium": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leretia": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Natsiatopsis": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ryticaryum": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uvedalia": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lancea": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psammetes": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stemodiopsis": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nothapodytes": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thyridia": { + "p": "Phrymaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Craterostigma": { + "p": "Linderniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mappianthus": { + "p": "Icacinaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Genlisea": { + "p": "Lentibulariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Utricularia": { + "p": "Lentibulariaceae", + "c": [], + "n": "bladderworts", + "r": "GENUS" + }, + "Schlegelia": { + "p": "Schlegeliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Synapsis": { + "p": "Schlegeliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pinguicula": { + "p": "Lentibulariaceae", + "c": [], + "n": "butterworts", + "r": "GENUS" + }, + "Calceolaria": { + "p": "Calceolariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Byblis": { + "p": "Byblidaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jovellana": { + "p": "Calceolariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porodittia": { + "p": "Calceolariaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Exarata": { + "p": "Schlegeliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wightia": { + "p": "Wightiaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Verbenoxylum": { + "p": "Verbenaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goetzeoideae": { + "p": "Solanaceae", + "c": [ + "Coeloneurum", + "Espadaea", + "Goetzea", + "Henoonia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Nicotianoideae": { + "p": "Solanaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Schwenckioideae": { + "p": "Solanaceae", + "c": [ + "Heteranthia", + "Melananthus", + "Schwenckia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Kaliphora": { + "p": "Montiniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cestroideae": { + "p": "Solanaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Montinia": { + "p": "Montiniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizanthoideae": { + "p": "Solanaceae", + "c": [ + "Schizanthus" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Hydrolea": { + "p": "Hydroleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Grevea": { + "p": "Montiniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Solanoideae": { + "p": "Solanaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Duckeodendroideae": { + "p": "Solanaceae", + "c": [ + "Duckeodendron" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Sphenoclea": { + "p": "Sphenocleaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petunioideae": { + "p": "Solanaceae", + "c": [ + "Bouchetia", + "Brunfelsia", + "Calibrachoa", + "Fabiana", + "Hunzikeria", + "Leptoglossis", + "Nierembergia", + "Petunia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Acradenia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcomelicope": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Agathosma": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crossosperma": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplolaena": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zieria": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euodia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boronia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coleonema": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhadinothamnus": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vepris": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acronychia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diosma": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Correa": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ticorea": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lunasia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drummondita": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Choisya": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raputia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decagonocarpus": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ertela": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ravenia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bosistoa": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adiscanthus": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asterolasia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halfordia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raveniopsis": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriostemon": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euchaetis": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geleznowia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Picrella": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetractomia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calodendrum": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Muiriantha": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neobyrnesia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentaceras": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Philotheca": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sheilanthera": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raputiarana": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Flindersia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decazyx": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dutaillyea": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galipea": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rauia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fagaropsis": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Megastigma": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acmadenia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythrochiton": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phebalium": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sigmatanthus": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Euxylophora": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coatesia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conchocarpus": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perryodendron": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maclurodendron": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chorilaena": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrostylis": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melicope": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Esenbeckia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helietta": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoschmidia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adenandra": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pitavia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoraputia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bouchardatia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phellodendron": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Desmotes": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crowea": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Toxosiphon": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictamnus": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dinosperma": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hortia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andreadoxa": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ivodea": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Orixa": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balfourodendron": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leionema": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spiranthera": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllosma": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microcybe": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Empleurum": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peltostigma": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zanthoxylum": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lubaria": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Geijera": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Angostura": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Comptonella": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nematolepis": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplophyllum": { + "p": "Haplophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brombya": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pitaviaster": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decatropis": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myrtopsis": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyanothamnus": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plethadenia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raulinoa": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metrodorea": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Skimmia": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetradium": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Medicosma": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptelea": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Casimiroa": { + "p": "Zanthoxyloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Amyris": { + "p": "Amyridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Psilopeganum": { + "p": "Rutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Boenninghausenia": { + "p": "Rutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cneoridium": { + "p": "Amyridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stauranthus": { + "p": "Amyridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruta": { + "p": "Rutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chloroxylon": { + "p": "Rutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pilocarpus": { + "p": "Amyridoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thamnosma": { + "p": "Rutoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ptaeroxylon": { + "p": "Cneoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cedrelopsis": { + "p": "Cneoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dictyoloma": { + "p": "Cneoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bottegoa": { + "p": "Cneoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spathelia": { + "p": "Cneoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cneorum": { + "p": "Cneoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sohnreyia": { + "p": "Cneoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harrisonia": { + "p": "Cneoroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wenzelia": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Merope": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poncirus": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Micromelum": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bergera": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Limonia": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aegle": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monanthocitrus": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleiospermium": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "x Citrofortunella": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burkillanthus": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Feroniella": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Merrillia": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Naringi": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atalantia": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pamburus": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Severinia": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balsamocitrus": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Luvunga": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Swinglea": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aeglopsis": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glycosmis": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Afraegle": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clausena": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triphasia": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paramignya": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Murraya": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Citropsis": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Citrus": { + "p": "Aurantioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sisyndite": { + "p": "Tribuloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoluederitzia": { + "p": "Tribuloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kelleronia": { + "p": "Tribuloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balanites": { + "p": "Tribuloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tribulopis": { + "p": "Tribuloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tribulus": { + "p": "Tribuloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kallstroemia": { + "p": "Tribuloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthoceras": { + "p": "Xanthoceroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roepera": { + "p": "Zygophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melocarpum": { + "p": "Zygophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zygophyllum": { + "p": "Zygophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetraena": { + "p": "Zygophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Augea": { + "p": "Zygophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fagonia": { + "p": "Zygophylloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viscainoa": { + "p": "Morkillioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Morkillia": { + "p": "Morkillioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sericodes": { + "p": "Morkillioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Seetzenia": { + "p": "Seetzenioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gonopterodendron": { + "p": "Larreoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bulnesia": { + "p": "Larreoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cassia clade": { + "p": "Caesalpinioideae", + "c": [ + "Batesia", + "Cassia", + "Chamaecrista", + "Haematoxylum", + "Melanoxylon", + "Pterogyne", + "Recordoxylon", + "Senna", + "Vouacapoua" + ], + "n": "", + "r": "CLADE" + }, + "mimosoid clade": { + "p": "Caesalpinioideae", + "c": [], + "n": "", + "r": "CLADE" + }, + "Larrea": { + "p": "Larreoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Umtiza clade": { + "p": "Caesalpinioideae", + "c": [ + "Arcoa", + "Gleditsia", + "Gymnocladus", + "Tetrapterocarpon", + "Umtiza" + ], + "n": "", + "r": "CLADE" + }, + "50 kb inversion clade": { + "p": "Papilionoideae", + "c": [ + "Andira clade", + "dalbergioids sensu lato", + "genistoids sensu lato", + "NPAAA clade" + ], + "n": "", + "r": "CLADE" + }, + "ADA clade": { + "p": "Papilionoideae", + "c": [], + "n": "", + "r": "CLADE" + }, + "Guaiacum": { + "p": "Larreoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dimorphandra Group A": { + "p": "Caesalpinioideae", + "c": [ + "Burkea", + "Dinizia", + "Mora", + "Stachyothyrsus" + ], + "n": "", + "r": "CLADE" + }, + "Dimorphandra Group B": { + "p": "Caesalpinioideae", + "c": [ + "Diptychandra", + "Erythrophleum", + "Moldenhawera", + "Pachyelasma" + ], + "n": "", + "r": "CLADE" + }, + "Caesalpinia clade": { + "p": "Caesalpinioideae", + "c": [ + "Balsamocarpon", + "Biancaea", + "Caesalpinia", + "Cenostigma", + "Cordeauxia", + "Coulteria", + "Denisophytum", + "Erythrostemon", + "Gelrebia", + "Guilandina", + "Hererolandia", + "Hoffmannseggia", + "Hultholia", + "Libidibia", + "Lophocarpinia", + "Mezoneuron", + "Moullava", + "Paubrasilia", + "Poincianella", + "Pomaria", + "Pterolobium", + "Stahlia", + "Stenodrepanum", + "Stuhlmannia", + "Tara", + "Ticanto", + "Zuccagnia" + ], + "n": "", + "r": "CLADE" + }, + "Cladrastis clade": { + "p": "Papilionoideae", + "c": [ + "Cladrastis", + "Pickeringia", + "Styphnolobium" + ], + "n": "", + "r": "CLADE" + }, + "Tachigali clade": { + "p": "Caesalpinioideae", + "c": [ + "Arapatiella", + "Campsiandra", + "Jacqueshuberia", + "Tachigali" + ], + "n": "", + "r": "CLADE" + }, + "Pintoa": { + "p": "Larreoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Porlieria": { + "p": "Larreoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peltophorum clade": { + "p": "Caesalpinioideae", + "c": [ + "Bussea", + "Cercidium", + "Colvillea", + "Conzattia", + "Delonix", + "Lemuropisum", + "Parkinsonia", + "Peltophorum", + "Schizolobium" + ], + "n": "", + "r": "CLADE" + }, + "Plectrocarpa": { + "p": "Larreoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Semialarium": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prionostemma": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campylostemon": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pristimera": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reissantia": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helictonema": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagiopteron": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elachyptera": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Simicratea": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Loeseneriella": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hylenaea": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apodostigma": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cuervea": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hippocratea": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthodon": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Duparquetia": { + "p": "Duparquetioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhyncholacis": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podostemum": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cipoia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scyphostegia": { + "p": "Scyphostegioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leiothylax": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trochantha": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Farmeria": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macarenia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thawatchaia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Winklerella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Castelnavia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monostylis": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrobryum": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macropodiella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Inversodicraea": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Willisia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Endocaulos": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Letestuella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thelethylax": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrobryopsis": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zehnderia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Griffithella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Noveloa": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mourera": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zeylanidium": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stonesia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophogyne": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladopus": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tristemonanthus": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vanroyenella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicraeanthus": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apinagia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dianyuea": { + "p": "Scyphostegioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monandriella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrodiscus": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hanseniella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jenmaniella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Simirestis": { + "p": "Hippocrateoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ledermanniella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratolacis": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saxicolella": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Laosia": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oserya": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marathrum": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paracladopus": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerothylax": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diamantina": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ctenobryum": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplobryum": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polypleurum": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Djinga": { + "p": "Podostemoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrocarpus": { + "p": "Ceratonia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceratonia": { + "p": "Ceratonia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poeppigia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dialiinae clade": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "CLADE" + }, + "Distemonanthus": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Storckiella": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Martiodendron": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petalostylis": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zenia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indotristicha": { + "p": "Tristichoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Labichea": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apuleia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mendoravia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicorynia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kalappia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Indodalzellia": { + "p": "Tristichoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dialium": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cussetia": { + "p": "Tristichoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uittienia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dalzellia": { + "p": "Tristichoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eligmocarpus": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tristicha": { + "p": "Tristichoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Koompassia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baudouinia": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Terniopsis": { + "p": "Tristichoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androcalymma": { + "p": "Dialioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Weddellina": { + "p": "Weddellinoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pibiria": { + "p": "Pibirioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viola subgen. Neoandinium": { + "p": "Viola", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Viola subgen. Viola": { + "p": "Viola", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Iltisiella": { + "p": "New World clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Podandrogyne": { + "p": "New World clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physostemon": { + "p": "New World clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cleoserrata": { + "p": "New World clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andinocleome": { + "p": "New World clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mitostylis": { + "p": "New World clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tarenaya": { + "p": "New World clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ludwigia": { + "p": "Ludwigioideae", + "c": [], + "n": "primrose-willow", + "r": "GENUS" + }, + "Cotylelobium": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryobalanops": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balanocarpus": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Shorea": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Richetia": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Upuna": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rubroshorea": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Doona": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stemonoporus": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neohopea": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dipterocarpus": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentacme": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hopea": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisoptera": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parashorea": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthoshorea": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudomonotes": { + "p": "Monotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vateriopsis": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monotes": { + "p": "Monotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vateria": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marquesia": { + "p": "Monotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vatica": { + "p": "Dipterocarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trillesanthus": { + "p": "Monotoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cercocarpus": { + "p": "Dryadoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Purshia": { + "p": "Dryadoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaebatia": { + "p": "Dryadoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dryas": { + "p": "Dryadoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fenghwaia": { + "p": "rhamnoid group", + "c": [], + "n": "", + "r": "GENUS" + }, + "Warneckea": { + "p": "Olisbeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triplochiton": { + "p": "Helicteroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melochia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Seringia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mansonia": { + "p": "Helicteroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mouriri": { + "p": "Olisbeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dicarpidium": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Keraudrenia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Megatritheca": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hannafordia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Waltheria": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rayleya": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abroma": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Maxwellia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Androcalva": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rulingia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ungeria": { + "p": "Helicteroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptonychia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helicteres": { + "p": "Helicteroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lasiopetalum": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Votomita": { + "p": "Olisbeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spathandra": { + "p": "Olisbeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guazuma": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Theobroma": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scaphopetalum": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guichenotia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Reevesia": { + "p": "Helicteroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hermannia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Commersonia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Memecylon": { + "p": "Olisbeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lysiosepalum": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Glossostemon": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Byttneria": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herrania": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kleinhovia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Durio": { + "p": "Helicteroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thomasia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ayenia": { + "p": "Byttnerioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fremontodendron": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachira": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentaplaris": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Krapovickasia": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kostermansia": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camptostemon": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Huberodendron": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Patinoa": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bombax": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scleronema": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gyranthera": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Septotheca": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aguiaria": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pochota": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhodognaphalon": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cavanillesia": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spirotheca": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catostemma": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ochroma": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chiranthodendron": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bernoullia": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phragmotheca": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriotheca": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ceiba": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Adansonia": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudobombax": { + "p": "Bombacoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paramelhania": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bastardia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kitaibela": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malvella": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Horsfordia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bombycidendron": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fryxellia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Excentrodendron": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helmiopsiella": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burretiodendron": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abutilon": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malvaviscus": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malachra": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andringitra": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fioria": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kosteletzkya": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Batesimalva": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nesogordonia": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coelostegia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lavatera": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hochreutinera": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fuertesimalva": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Navaea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Briquetiastrum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callirhoe": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Briquetia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bastardiopsis": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kokia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monteiroa": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriolaena": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lagunaria": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheirolaena": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neesia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ruizia": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyculogygas": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hampea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kearnemalvastrum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nayariophyton": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helmiopsis": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cienfuegosia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Iliamna": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malope": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sidalcea": { + "p": "Malvoideae", + "c": [], + "n": "checkerblooms", + "r": "GENUS" + }, + "Modiolastrum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cristaria": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allowissadula": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bakeridesia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trochetia": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acaulimalva": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremalche": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Humbertiella": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andeimalva": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astyria": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gaya": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Napaea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anoda": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hibiscadelphus": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neobrittonia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decaschistia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alcea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malvastrum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Howittia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callianthe": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalohibiscus": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterospermum": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alyogyne": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gossypium": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Abelmoschus": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Helicteropsis": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cenocentrum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisodontea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Billieturnera": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harmsia": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lawrencia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gossypioides": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malvalthaea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Matisia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Herissantia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gynatrix": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anotea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lebronnecia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malacothamnus": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bastardiastrum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Modiola": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chorisia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cullenia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hoheria": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corynabutilon": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meximalva": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asterotrichion": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jumelleanthus": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lecanophora": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Megistostegium": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Allosidastrum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kydia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dendrosida": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dirhamphis": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dombeya": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paradombeya": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macrostelia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentapetes": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Azanza": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Malva": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trochetiopsis": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Althaea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schoutenia": { + "p": "Dombeyoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peltaea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Robinsonella": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thespesiopsis": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radyera": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sida": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hibiscus": { + "p": "Malvoideae", + "c": [], + "n": "rosemallows", + "r": "GENUS" + }, + "Papuodendron": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phragmocarpidium": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Talipariti": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wissadula": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tarasa": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Periptera": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhynchosida": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phymosia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sidastrum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sidasodes": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thepparatia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nototriche": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Palaua": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Perrierophytum": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudabutilon": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urena": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plagianthus": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ripariosida": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaeralcea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wercklea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pavonia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Quararibea": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Senra": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Urocarpidium": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrasida": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uladendron": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Thespesia": { + "p": "Malvoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Corchoropsis": { + "p": "Tilioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Craigia": { + "p": "Tilioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tilia": { + "p": "Tilioideae", + "c": [], + "n": "lindens", + "r": "GENUS" + }, + "Indagator": { + "p": "Tilioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brachychiton": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acropogon": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlamydocola": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Firmiana": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Argyrodendron": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cola": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neoregnellia": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melhania": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scaphium": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterocymbium": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hildegardia": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Octolobus": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heritiera": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterygota": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Franciscodendron": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sterculia": { + "p": "Sterculioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brownlowia": { + "p": "Brownlowioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Christiana": { + "p": "Brownlowioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jarandersonia": { + "p": "Brownlowioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentace": { + "p": "Brownlowioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Berrya": { + "p": "Brownlowioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Carpodiptera": { + "p": "Brownlowioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplodiscus": { + "p": "Brownlowioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Duseniella": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Barnadesia": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Huarpea": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Doniophyton": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hecastocleis": { + "p": "Hecastocleidoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fulcaldea": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dasyphyllum": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Archidasyphyllum": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arnaldoa": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chuquiraga": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heliantheae alliance": { + "p": "Asteroideae", + "c": [], + "n": "", + "r": "CLADE" + }, + "Schlechtendalia": { + "p": "Barnadesioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pentopetia": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Secamone": { + "p": "Secamonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ectadium": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mondia": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baroniella": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atherandra": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sacleuxia": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pervillaea": { + "p": "Secamonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Baseonema": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raphionacme": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parquetina": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptolepis": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Myriopteron": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Secamonopsis": { + "p": "Secamonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Streptocaulon": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnanthera": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chlorocyathus": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Atherolepis": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goniostemma": { + "p": "Secamonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goodenia": { + "p": "core Goodeniaceae", + "c": [ + "Goodenia subgen. Goodenia", + "Goodenia subgen. Monochila", + "Goodenia subgen. Porphyranthus" + ], + "n": "", + "r": "GENUS" + }, + "Stomatostemma": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coopernookia": { + "p": "core Goodeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Buckollia": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stelmocrypton": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Decalepis": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sarcorrhiza": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Phyllanthera": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Epistemma": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hemidesmus": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Triodoglossum": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Toxocarpus": { + "p": "Secamonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Periploca": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ischnolepis": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zygostelma": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cryptostegia": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Batesanthus": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petopentia": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Curroria": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ectadiopsis": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Camptocarpus": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schlechterella": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scaevola": { + "p": "core Goodeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Finlaysonia": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Omphalogonus": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "LAD clade": { + "p": "core Goodeniaceae", + "c": [ + "Anthotium", + "Dampiera", + "Lechenaultia" + ], + "n": "", + "r": "CLADE" + }, + "Verreauxia": { + "p": "core Goodeniaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tacazzea": { + "p": "Periplocoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Frodinia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Seemannaralia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aralia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Plerandra": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cheirodendron": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heteropanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crepinella": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brassaia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Raukaua": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neocussonia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sciadodendron": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harmsiopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalaralia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meryta": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hedera": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gamblea": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrapanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chengiopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schefflera": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trachymene": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Metapanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Merrilliopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eleutherococcus": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyscias": { + "p": "Araliaceae", + "c": [ + "Polyscias subgen. Arthrophyllum", + "Polyscias subgen. Cuphocarpus", + "Polyscias subgen. Eupteron", + "Polyscias subgen. Grotenfendia", + "Polyscias subgen. Indokingia", + "Polyscias subgen. Maralia", + "Polyscias subgen. Polyscias", + "Polyscias subgen. Sciadopanax", + "Polyscias subgen. Tetraplasandra", + "Polyscias subgen. Tieghemopanax" + ], + "n": "", + "r": "GENUS" + }, + "Dendropanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Osmoxylon": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astropanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kalopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Macropanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oplopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Astrotricha": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Panax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cussonia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Motherwellia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Neosciadium": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hydrocotyle": { + "p": "Araliaceae", + "c": [], + "n": "water pennyworts", + "r": "GENUS" + }, + "Didymopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heptapleurum": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trevesia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Uldinia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fatsia": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sciodaphyllum": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brassaiopsis": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didiscus": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cephalopanax": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tupidanthus": { + "p": "Araliaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Delarbrea": { + "p": "Myodocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Marianthus": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gardenieae complex": { + "p": "Ixoroideae", + "c": [ + "Bertiereae - Coffeeae clade", + "Gardenieae - Pavetteae clade", + "Octotropideae s. l. clade" + ], + "n": "", + "r": "CLADE" + }, + "Apioideae": { + "p": "Apiaceae", + "c": [ + "Acronema clade", + "apioid superclade", + "Arcuatopterus clade", + "Chamaesium clade", + "Conioselinum chinense clade", + "Diplolophium clade", + "Komarovia clade", + "Physospermopsis clade", + "Pleurospermopsis clade" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Cheiranthera": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Auranticarpa": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mackinlayoideae": { + "p": "Apiaceae", + "c": [ + "Actinotus", + "Apiopetalum", + "Centella", + "Chlaenosciadium", + "Homalosciadium", + "Mackinlaya", + "Micropleura", + "Pentapeltis", + "Platysace", + "Schoenolaena", + "Xanthosia" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Saniculoideae": { + "p": "Apiaceae", + "c": [], + "n": "", + "r": "SUBFAMILY" + }, + "Myodocarpus": { + "p": "Myodocarpaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bentleya": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pittosporum": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhytidosporum": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenosporum": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bursaria": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Billardiera": { + "p": "Pittosporaceae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Azorelloideae": { + "p": "Apiaceae", + "c": [ + "Asteriscium", + "Azorella", + "Bolax", + "Bowlesia", + "Dichosciadium", + "Dickinsia", + "Diplaspis", + "Diposis", + "Domeykoa", + "Drusa", + "Eremocharis", + "Gymnophyton", + "Homalocarpus", + "Klotzschia", + "Microsciadium", + "Mulinum", + "Oschatzia", + "Pozoa", + "Spananthe" + ], + "n": "", + "r": "SUBFAMILY" + }, + "Antiphytum": { + "p": "Echiochiloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ogastemma": { + "p": "Echiochiloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Echiochilon": { + "p": "Echiochiloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Renschia": { + "p": "Scutellarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Garrettia": { + "p": "Peronematoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petitia": { + "p": "Viticoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Wenchengia": { + "p": "Scutellarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kinostemon": { + "p": "Teucrioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sanango": { + "p": "Sanangoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Clerodendranthus": { + "p": "Teucrioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petraeovitex": { + "p": "Peronematoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Faradaya": { + "p": "Teucrioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Premna": { + "p": "Premnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cardioteucris": { + "p": "Teucrioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tectona": { + "p": "Tectonoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vitex": { + "p": "Viticoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Symphorema": { + "p": "Symphorematoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Callicarpa": { + "p": "Callicarpoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oncinocalyx": { + "p": "Teucrioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paravitex": { + "p": "Viticoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Teijsmanniodendron": { + "p": "Viticoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphenodesme": { + "p": "Symphorematoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Scutellaria": { + "p": "Scutellarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenopyramis": { + "p": "Peronematoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Holmskioldia": { + "p": "Scutellarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclonema": { + "p": "Teucrioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pseudocarpidium": { + "p": "Viticoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Congea": { + "p": "Symphorematoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peronema": { + "p": "Peronematoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xatardia": { + "p": "Viticoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tinnea": { + "p": "Scutellarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spartothamnella": { + "p": "Teucrioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gmelina": { + "p": "Premnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Viticipremna": { + "p": "Viticoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cornutia": { + "p": "Premnoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Teucridium": { + "p": "Teucrioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cymaria": { + "p": "Cymarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acrymia": { + "p": "Cymarioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mendoncia": { + "p": "Thunbergioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tabebuia alliance": { + "p": "Crescentiina", + "c": [ + "Cybistax", + "Ekmanianthe", + "Godmania", + "Handroanthus", + "Roseodendron", + "Sparattosperma", + "Tabebuia", + "Zeyheria" + ], + "n": "", + "r": "CLADE" + }, + "Pseudocalyx": { + "p": "Thunbergioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "paleotropical clade": { + "p": "Crescentiina", + "c": [ + "Catophractes", + "Dolichandrone", + "Fernandoa", + "Heterophragma", + "Kigelia", + "Markhamia", + "Mayodendron", + "Newbouldia", + "Pauldopia", + "Radermachera", + "Rhigozum", + "Spathodea", + "Stereospermum", + "Tecomella" + ], + "n": "", + "r": "CLADE" + }, + "Thunbergia": { + "p": "Thunbergioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anisosepalum": { + "p": "Nelsonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Elytraria": { + "p": "Nelsonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nelsonia": { + "p": "Nelsonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ophiorrhiziphyllon": { + "p": "Nelsonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Aymoreana": { + "p": "Nelsonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Saintpauliopsis": { + "p": "Nelsonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Staurogyne": { + "p": "Nelsonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Avicennia": { + "p": "Avicennioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gynocraterium": { + "p": "Nelsonioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fabiana": { + "p": "Petunioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goetzea": { + "p": "Goetzeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coeloneurum": { + "p": "Goetzeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Leptoglossis": { + "p": "Petunioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Henoonia": { + "p": "Goetzeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schwenckia": { + "p": "Schwenckioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Brunfelsia": { + "p": "Petunioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Duckeodendron": { + "p": "Duckeodendroideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melananthus": { + "p": "Schwenckioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petunia": { + "p": "Petunioideae", + "c": [], + "n": "petunia", + "r": "GENUS" + }, + "Bouchetia": { + "p": "Petunioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heteranthia": { + "p": "Schwenckioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calibrachoa": { + "p": "Petunioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hunzikeria": { + "p": "Petunioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Espadaea": { + "p": "Goetzeoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Nierembergia": { + "p": "Petunioideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizanthus": { + "p": "Schizanthoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Denisophytum": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mora": { + "p": "Dimorphandra Group A", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterogyne": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Batesia": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnocladus": { + "p": "Umtiza clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythrophleum": { + "p": "Dimorphandra Group B", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gelrebia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Styphnolobium": { + "p": "Cladrastis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cenostigma": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Delonix": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hoffmannseggia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haematoxylum": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Vouacapoua": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dinizia": { + "p": "Dimorphandra Group A", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cercidium": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cladrastis": { + "p": "Cladrastis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lemuropisum": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tachigali": { + "p": "Tachigali clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tara": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Moldenhawera": { + "p": "Dimorphandra Group B", + "c": [], + "n": "", + "r": "GENUS" + }, + "Coulteria": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Umtiza": { + "p": "Umtiza clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachyelasma": { + "p": "Dimorphandra Group B", + "c": [], + "n": "", + "r": "GENUS" + }, + "Peltophorum": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ticanto": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pickeringia": { + "p": "Cladrastis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Senna": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gleditsia": { + "p": "Umtiza clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hultholia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Melanoxylon": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stachyothyrsus": { + "p": "Dimorphandra Group A", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bussea": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Schizolobium": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Campsiandra": { + "p": "Tachigali clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "dalbergioids sensu lato": { + "p": "50 kb inversion clade", + "c": [], + "n": "", + "r": "CLADE" + }, + "Arapatiella": { + "p": "Tachigali clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stuhlmannia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parkinsonia": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cordeauxia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Balsamocarpon": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Colvillea": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paubrasilia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Erythrostemon": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "genistoids sensu lato": { + "p": "50 kb inversion clade", + "c": [ + "core genistoids" + ], + "n": "", + "r": "CLADE" + }, + "NPAAA clade": { + "p": "50 kb inversion clade", + "c": [ + "Hologalegina", + "indigoferoid/millettioid clade", + "mirbelioid clade" + ], + "n": "", + "r": "CLADE" + }, + "Recordoxylon": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zuccagnia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Caesalpinia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diptychandra": { + "p": "Dimorphandra Group B", + "c": [], + "n": "", + "r": "GENUS" + }, + "Jacqueshuberia": { + "p": "Tachigali clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stahlia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Poincianella": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burkea": { + "p": "Dimorphandra Group A", + "c": [], + "n": "", + "r": "GENUS" + }, + "Biancaea": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Libidibia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pomaria": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conzattia": { + "p": "Peltophorum clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arcoa": { + "p": "Umtiza clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cassia": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hererolandia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Andira clade": { + "p": "50 kb inversion clade", + "c": [ + "Andira", + "Hymenolobium" + ], + "n": "", + "r": "CLADE" + }, + "Moullava": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mezoneuron": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stenodrepanum": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tetrapterocarpon": { + "p": "Umtiza clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Guilandina": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lophocarpinia": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaecrista": { + "p": "Cassia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterolobium": { + "p": "Caesalpinia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Goodenia subgen. Porphyranthus": { + "p": "Goodenia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Goodenia subgen. Monochila": { + "p": "Goodenia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Goodenia subgen. Goodenia": { + "p": "Goodenia", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Lechenaultia": { + "p": "LAD clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dampiera": { + "p": "LAD clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Anthotium": { + "p": "LAD clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Polyscias subgen. Tieghemopanax": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Indokingia": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Tetraplasandra": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Maralia": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Sciadopanax": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Polyscias": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Arthrophyllum": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Grotenfendia": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Eupteron": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Polyscias subgen. Cuphocarpus": { + "p": "Polyscias", + "c": [], + "n": "", + "r": "SUBGENUS" + }, + "Conioselinum chinense clade": { + "p": "Apioideae", + "c": [ + "Dethawia", + "Meum", + "Mutellina", + "Rivasmartinezia", + "Trochiscanthes" + ], + "n": "", + "r": "CLADE" + }, + "Pentapeltis": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Apiopetalum": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "apioid superclade": { + "p": "Apioideae", + "c": [ + "Cachrys clade", + "Conium clade", + "Opopanax clade", + "Sinodielsia clade" + ], + "n": "", + "r": "CLADE" + }, + "Octotropideae s. l. clade": { + "p": "Gardenieae complex", + "c": [ + "Burchellia", + "Didymosalpinx", + "Galiniera", + "Mantalania", + "Monosalpinx" + ], + "n": "", + "r": "CLADE" + }, + "Gardenieae - Pavetteae clade": { + "p": "Gardenieae complex", + "c": [], + "n": "", + "r": "CLADE" + }, + "Micropleura": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mackinlaya": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bertiereae - Coffeeae clade": { + "p": "Gardenieae complex", + "c": [], + "n": "", + "r": "CLADE" + }, + "Pleurospermopsis clade": { + "p": "Apioideae", + "c": [ + "Pleurospermopsis" + ], + "n": "", + "r": "CLADE" + }, + "Schoenolaena": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Xanthosia": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acronema clade": { + "p": "Apioideae", + "c": [ + "Acronema", + "Halosciastrum", + "Harrysmithia", + "Ligusticum", + "Meeboldia", + "Oreocomopsis", + "Ostericum", + "Pachypleurum", + "Pternopetalum", + "Pterygopleurum", + "Rupiphila", + "Sinocarum", + "Spuriopimpinella", + "Tilingia" + ], + "n": "", + "r": "CLADE" + }, + "Platysace": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplolophium clade": { + "p": "Apioideae", + "c": [ + "Diplolophium" + ], + "n": "", + "r": "CLADE" + }, + "Komarovia clade": { + "p": "Apioideae", + "c": [ + "Calyptrosciadium", + "Changium", + "Chuanminshen", + "Cyclorhiza", + "Komarovia", + "Parasilaus", + "Sphaerosciadium" + ], + "n": "", + "r": "CLADE" + }, + "Chamaesium clade": { + "p": "Apioideae", + "c": [ + "Chamaesium" + ], + "n": "", + "r": "CLADE" + }, + "Physospermopsis clade": { + "p": "Apioideae", + "c": [ + "Hansenia", + "Haplosphaera", + "Heptaptera", + "Hymenolaena", + "Keraymonia", + "Physospermopsis", + "Sinolimprichtia", + "Tongoloa" + ], + "n": "", + "r": "CLADE" + }, + "Chlaenosciadium": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Homalosciadium": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Centella": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Actinotus": { + "p": "Mackinlayoideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Arcuatopterus clade": { + "p": "Apioideae", + "c": [ + "Arcuatopterus" + ], + "n": "", + "r": "CLADE" + }, + "Homalocarpus": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bowlesia": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diposis": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplaspis": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dichosciadium": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Klotzschia": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eremocharis": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oschatzia": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Azorella": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spananthe": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Asteriscium": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bolax": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pozoa": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Microsciadium": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Gymnophyton": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Drusa": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mulinum": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Domeykoa": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dickinsia": { + "p": "Azorelloideae", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rhigozum": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spathodea": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Newbouldia": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cybistax": { + "p": "Tabebuia alliance", + "c": [], + "n": "", + "r": "GENUS" + }, + "Zeyheria": { + "p": "Tabebuia alliance", + "c": [], + "n": "", + "r": "GENUS" + }, + "Roseodendron": { + "p": "Tabebuia alliance", + "c": [], + "n": "", + "r": "GENUS" + }, + "Markhamia": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Dolichandrone": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stereospermum": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heterophragma": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Fernandoa": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Catophractes": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ekmanianthe": { + "p": "Tabebuia alliance", + "c": [], + "n": "", + "r": "GENUS" + }, + "Godmania": { + "p": "Tabebuia alliance", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pauldopia": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tecomella": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sparattosperma": { + "p": "Tabebuia alliance", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kigelia": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Radermachera": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mayodendron": { + "p": "paleotropical clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Handroanthus": { + "p": "Tabebuia alliance", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tabebuia": { + "p": "Tabebuia alliance", + "c": [], + "n": "", + "r": "GENUS" + }, + "core genistoids": { + "p": "genistoids sensu lato", + "c": [], + "n": "", + "r": "CLADE" + }, + "Hymenolobium": { + "p": "Andira clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hologalegina": { + "p": "NPAAA clade", + "c": [ + "IRL clade", + "robinioid clade" + ], + "n": "", + "r": "CLADE" + }, + "Andira": { + "p": "Andira clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "indigoferoid/millettioid clade": { + "p": "NPAAA clade", + "c": [], + "n": "", + "r": "CLADE" + }, + "mirbelioid clade": { + "p": "NPAAA clade", + "c": [], + "n": "", + "r": "CLADE" + }, + "Dethawia": { + "p": "Conioselinum chinense clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mutellina": { + "p": "Conioselinum chinense clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meum": { + "p": "Conioselinum chinense clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinodielsia clade": { + "p": "apioid superclade", + "c": [ + "Cenolophium", + "Conioselinum", + "Kuramosciadium", + "Levisticum", + "Lithosciadium", + "Paulita", + "Pterocyclus", + "Seselopsis", + "Silaum", + "Sinodielsia", + "Sphaenolobium" + ], + "n": "", + "r": "CLADE" + }, + "Changium": { + "p": "Komarovia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Harrysmithia": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Parasilaus": { + "p": "Komarovia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Komarovia": { + "p": "Komarovia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Galiniera": { + "p": "Octotropideae s. l. clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Haplosphaera": { + "p": "Physospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chuanminshen": { + "p": "Komarovia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Opopanax clade": { + "p": "apioid superclade", + "c": [ + "Crenosciadium", + "Magydaris", + "Opopanax", + "Petroedmondia", + "Smyrniopsis", + "Stefanoffia" + ], + "n": "", + "r": "CLADE" + }, + "Ostericum": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pternopetalum": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hansenia": { + "p": "Physospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Calyptrosciadium": { + "p": "Komarovia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tongoloa": { + "p": "Physospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Heptaptera": { + "p": "Physospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Acronema": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Chamaesium": { + "p": "Chamaesium clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rupiphila": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplolophium": { + "p": "Diplolophium clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Monosalpinx": { + "p": "Octotropideae s. l. clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Didymosalpinx": { + "p": "Octotropideae s. l. clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Trochiscanthes": { + "p": "Conioselinum chinense clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pleurospermopsis": { + "p": "Pleurospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Meeboldia": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cyclorhiza": { + "p": "Komarovia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Rivasmartinezia": { + "p": "Conioselinum chinense clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Hymenolaena": { + "p": "Physospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ligusticum": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Tilingia": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaerosciadium": { + "p": "Komarovia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Physospermopsis": { + "p": "Physospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cachrys clade": { + "p": "apioid superclade", + "c": [ + "Alococarpum", + "Azilia", + "Bilacunaria", + "Cachrys", + "Diplotaenia", + "Eriocycla", + "Ferulago", + "Prangos" + ], + "n": "", + "r": "CLADE" + }, + "Arcuatopterus": { + "p": "Arcuatopterus clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Burchellia": { + "p": "Octotropideae s. l. clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Mantalania": { + "p": "Octotropideae s. l. clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinolimprichtia": { + "p": "Physospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Keraymonia": { + "p": "Physospermopsis clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Oreocomopsis": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterygopleurum": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Halosciastrum": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pachypleurum": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinocarum": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Spuriopimpinella": { + "p": "Acronema clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conium clade": { + "p": "apioid superclade", + "c": [ + "Conium" + ], + "n": "", + "r": "CLADE" + }, + "Conioselinum": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Smyrniopsis": { + "p": "Opopanax clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Magydaris": { + "p": "Opopanax clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cenolophium": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Petroedmondia": { + "p": "Opopanax clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Paulita": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Pterocyclus": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "IRL clade": { + "p": "Hologalegina", + "c": [], + "n": "", + "r": "CLADE" + }, + "Seselopsis": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Kuramosciadium": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sphaenolobium": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "robinioid clade": { + "p": "Hologalegina", + "c": [], + "n": "", + "r": "CLADE" + }, + "Silaum": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Sinodielsia": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Opopanax": { + "p": "Opopanax clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Crenosciadium": { + "p": "Opopanax clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Lithosciadium": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Stefanoffia": { + "p": "Opopanax clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Levisticum": { + "p": "Sinodielsia clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Alococarpum": { + "p": "Cachrys clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Prangos": { + "p": "Cachrys clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Diplotaenia": { + "p": "Cachrys clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Conium": { + "p": "Conium clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Cachrys": { + "p": "Cachrys clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Bilacunaria": { + "p": "Cachrys clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Ferulago": { + "p": "Cachrys clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Eriocycla": { + "p": "Cachrys clade", + "c": [], + "n": "", + "r": "GENUS" + }, + "Azilia": { + "p": "Cachrys clade", + "c": [], + "n": "", + "r": "GENUS" + } +} \ No newline at end of file